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

Add Bootstrap-Builder Logic to Packer Builder-List #651

Closed
wants to merge 2 commits into from

Add EL9 bootstrap-builder bits

fc13e62
Select commit
Loading
Failed to load commit list.
Closed

Add Bootstrap-Builder Logic to Packer Builder-List #651

Add EL9 bootstrap-builder bits
fc13e62
Select commit
Loading
Failed to load commit list.
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"
          }
        ]
      }
    ]
  }
}