Add Bootstrap-Builder Logic to Packer Builder-List #651
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Pull Request
failed
Dec 20, 2023 in 59s
Build Failed
The build failed. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #651 Add Bootstrap-Builder Logic to Packer Builder-List.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Shell |
Operating System | Linux (Focal) |
Build Configuration
{
"language": "shell",
"os": [
"linux"
],
"dist": "focal",
"if": "branch = master OR type = pull_request",
"jobs": {
"include": [
{
"stage": "lint",
"name": "Project Syntax Verification",
"install": [
"make -f Makefile.tardigrade-ci lint/install"
],
"script": [
"make -f Makefile.tardigrade-ci lint"
]
},
{
"stage": "deploy",
"if": "branch = master AND type = push AND repo = plus3it/spel",
"before_script": [
"PRIOR_VERSION=$(git describe --abbrev=0 --tags)\nRELEASE_VERSION=$(grep current_version $TRAVIS_BUILD_DIR/.bumpversion.cfg | sed 's/^.*= //' )\nRELEASE_BODY=\"* [SPEL v$RELEASE_VERSION CHANGELOG](https://github.com/plus3it/spel/blob/$RELEASE_VERSION/CHANGELOG.md)\"\nexport PRIOR_VERSION RELEASE_VERSION RELEASE_BODY\n"
],
"script": [
"skip"
],
"before_deploy": [
"(set -x; git tag -a $RELEASE_VERSION -m $RELEASE_VERSION)\n"
],
"deploy": [
{
"provider": "releases",
"name": "$RELEASE_VERSION",
"tag_name": "$RELEASE_VERSION",
"target_commitish": "$TRAVIS_COMMIT",
"draft": false,
"on": {
"branch": [
"master"
],
"repo": "plus3it/spel",
"condition": [
"\"$PRIOR_VERSION\" != \"$RELEASE_VERSION\""
]
},
"token": "$GH_RELEASES_TOKEN",
"release_notes": "$RELEASE_BODY"
}
]
}
]
}
}
Loading