Extract and Retain Version Number from First Line #209
Travis CI / Travis CI - Pull Request
succeeded
Oct 25, 2023 in 13m 1s
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 #209 Extract and Retain Version Number from First Line.
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 | ENV | OS | State |
---|---|---|---|
720.1 | GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp" | Linux | passed |
720.2 | GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp" | Linux | passed |
720.3 | GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp" | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Shell |
Operating System | Linux (Trusty) |
Build Configuration
{
"language": "shell",
"os": [
"linux"
],
"dist": "trusty",
"cache": {
"directories": [
"${HOME}/bin"
]
},
"env": [
"global={:GIMME_TMP=>\"\\\"${TRAVIS_BUILD_DIR}/tmp\\\"\"}={:UNAME=>\"\\\"$(uname | tr '[:upper:]' '[:lower:]')\\\"\"}={:GO_BOOTSTRAP_VERSION=>\"1.20.6\"}={:GOPATH=>\"\\\"${HOME}/gopath\\\"\"}={:PATH=>\"\\\"${HOME}/bin:${PATH}\\\"\"}={:SHELLCHECK_URL=>\"\\\"https://www.googleapis.com/download/storage/v1/b/shellcheck/o/shellcheck-v0.4.7.linux.x86_64.tar.xz?alt=media\\\"\"}={:SHFMT_URL=>\"\\\"https://github.com/mvdan/sh/releases/download/v2.2.0/shfmt_v2.2.0_linux_amd64\\\"\"} jobs={:TARGET=>\"native\", :GO_VERSIONS=>\"\\\"$(sed -n -e '/^[^#]/p' < .testdata/sample-binary-$UNAME) $(sed -n -e '/^[^#]/p' < .testdata/source-$UNAME)\\\"\"}={:TARGET=>\"arm\", :GO_VERSIONS=>\"\\\"master\\\"\"}={:TARGET=>\"arm64\", :GO_VERSIONS=>\"\\\"$(sed -n -e '/^[^#]/p' < .testdata/sample-binary-$UNAME) master\\\"\"}"
],
"addons": {
"apt": {
"packages": [
"gcc-aarch64-linux-gnu",
"libc6-dev-arm64-cross"
]
}
},
"before_script": [
"mkdir -p \"${GIMME_TMP}\""
],
"script": [
"if [ $UNAME = linux ] && [[ $(shellcheck --version | awk '/^version:/ { print $2 }') != 0.4.7 ]] ; then curl -sSL -o \"${GIMME_TMP}/shellcheck.tar.xz\" \"${SHELLCHECK_URL}\"; tar -C \"${HOME}/bin\" --exclude=\"*.txt\" --strip-components=1 -xf \"${GIMME_TMP}/shellcheck.tar.xz\"; shellcheck --version; fi",
"if [ $UNAME = linux ] && [[ $(shfmt -version 2>/dev/null) != v2.2.0 ]] ; then curl -sSL \"${SHFMT_URL}\" -o \"${HOME}/bin/shfmt\"; chmod +x \"${HOME}/bin/shfmt\"; shfmt -version; fi",
"if [ $UNAME = linux ]; then make lint; fi",
"git diff --exit-code",
"git diff --cached --exit-code",
"./gimme -h",
"./gimme -V",
"./runtests \"${TARGET}\" \"${GO_BOOTSTRAP_VERSION}\" ${GO_VERSIONS}",
"./gimme -l"
]
}
Loading