Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to fix linting issues #904

Merged
merged 10 commits into from
May 19, 2024

Merge branch 'master' into liniting-docs

fd8be98
Select commit
Loading
Failed to load commit list.
Merged

Update docs to fix linting issues #904

Merge branch 'master' into liniting-docs
fd8be98
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 18, 2024 in 8m 42s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #904 Update docs to fix linting issues.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Go Xcode ENV OS State
2314.1 1.21.x xcode12.2 CC_TEST_REPORTER_ID=[secure] macOS passed
2314.2 1.21.x CC_TEST_REPORTER_ID=[secure] Linux passed
2314.3 1.21.x CC_TEST_REPORTER_ID=[secure] windows passed

Build Configuration

Build Option Setting
Language Go
Operating System macOS, Linux (Focal), windows
Go Version 1.21.x
Xcode Version xcode12.2
Build Configuration
{
  "language": "go",
  "os": [
    "osx",
    "linux",
    "windows"
  ],
  "dist": "focal",
  "env": [
    "global=CC_TEST_REPORTER_ID=[secure]"
  ],
  "go": [
    "1.21.x"
  ],
  "osx_image": [
    "xcode12.2"
  ],
  "services": [
    "docker"
  ],
  "branches": {
    "only": [
      "master",
      "/^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/"
    ]
  },
  "before_install": [
    "if [[ \"${TRAVIS_OS_NAME}\" == \"windows\" ]]; then choco install make; fi",
    "if [[ \"${TRAVIS_OS_NAME}\" == \"osx\" ]]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install bash; fi"
  ],
  "install": [
    "./ci/install.sh"
  ],
  "before_script": [
    "./ci/before-build.sh"
  ],
  "script": [
    "./ci/build.sh"
  ],
  "after_script": [
    "./ci/after-build.sh"
  ],
  "deploy": [
    {
      "provider": "releases",
      "file": [
        "release/goss-darwin-amd64",
        "release/goss-darwin-amd64.sha256",
        "release/goss-darwin-arm64",
        "release/goss-darwin-arm64.sha256",
        "release/goss-linux-amd64",
        "release/goss-linux-amd64.sha256",
        "release/goss-linux-386",
        "release/goss-linux-386.sha256",
        "release/goss-linux-arm",
        "release/goss-linux-arm.sha256",
        "release/goss-linux-arm64",
        "release/goss-linux-arm64.sha256",
        "release/goss-linux-s390x",
        "release/goss-linux-s390x.sha256",
        "release/goss-windows-amd64.exe",
        "release/goss-windows-amd64.exe.sha256",
        "extras/dgoss/dgoss",
        "extras/dgoss/dgoss.sha256"
      ],
      "skip_cleanup": true,
      "on": {
        "repo": "goss-org/goss",
        "tags": true,
        "condition": [
          "$TRAVIS_OS_NAME = linux"
        ]
      },
      "token": {
        "secure": "ijNltjw/mIHIOx8vLZ6asUun3SbY7D+XZbs5NX8vcIv0jvOiwaaT1hqny7SQBHfGZzqHsYUSS/GYAYJdBqKFFfGmTZsl90hFT6D0RGdz9C71UVxNFX4wQ5KQ/WVvdMT2SrLymGvu9TvoU0VG8OWqWVdxSlUPf6qOTGAagrzg+Tbsbb6czeiG67mlBBL23XSlfMG1p45UxzvI41SZj2R3ElUb0hym1CrFaoC36PBGrb0x41TXzvd8J7cu6xDzgczYhnYQQZpS6f2YcqNV1z0f+P67EQqQiDWIIcK2jE/YG+RgM8cbpLMiMec8CDiwNCsejBA5EbVMlGJlODvBXT5NmMBeugueqfSHEfkl5qZTQG4AOAT7UsqbnM7r0NqzmaE5Lj90igvJK6rNsH1ZRe79WfSsTtuzlkkouHGvyoz0M8gnMSzpbbwoyIy+UT0hhPMoZvIpXfr43en5WkbkPKfop0p4Vjc8NGg0iD45q1JAvIVTtz/WvWTknM1P8e3u+TiDTaZkcJJmFaBqgaeLoWktOGfi54p9nhgQnSyBYt4PyvhWDQs7QFmX0BdKlqJCESvUOJTe1t6zJJsV7Gn/3sGCN7JUEwbnXTsCoMjjFFUvQdm0Ur7t7/2xU3kO+dyfqcdM/5SYFeppQcjHI0ckhI51mIoBTsJsGvaVwKKL1I4cyBU="
      }
    }
  ]
}