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

use IS operator #72

Merged
merged 1 commit into from
Sep 3, 2023

use `IS` operator

f5e0d70
Select commit
Loading
Failed to load commit list.
Merged

use IS operator #72

use `IS` operator
f5e0d70
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch cancelled Sep 3, 2023 in 25s

Build Canceled

The build canceled, just like the previous build.

Details

This is a normal build for the 31-move-deploy-to-build-job branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has two jobs, running in parallel.

Stage 1: test

This stage canceled.

Job OS State
194.1 Focal (20.04) Linux canceled
194.2 Jammy (22.04) Linux canceled

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Xenial)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "docker"
  ],
  "jobs": {
    "exclude": [
      {
        "dist": "xenial"
      }
    ],
    "include": [
      {
        "stage": "test"
      },
      {
        "name": "Focal (20.04)",
        "os": "linux",
        "dist": "focal",
        "install": [
          "pushd /tmp && wget 'https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz' && tar xzf make-4.4.1.tar.gz && cd make-4.4.1 && ./configure --prefix=/usr/local && sudo make install && popd"
        ],
        "script": [
          "export TMPDIR=$(mktemp -d) && export PATH=\"/usr/local/bin:$PATH\" && make test && make PREFIX=${TMPDIR}/ install"
        ]
      },
      {
        "name": "Jammy (22.04)",
        "os": "linux",
        "dist": "jammy",
        "install": [
          "pushd /tmp && wget 'https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz' && tar xzf make-4.4.1.tar.gz && cd make-4.4.1 && ./configure --prefix=/usr/local && sudo make install && popd"
        ],
        "script": [
          "export TMPDIR=$(mktemp -d) && export PATH=\"/usr/local/bin:$PATH\" && make test && make PREFIX=${TMPDIR}/ install"
        ]
      },
      {
        "name": "OSX (xcode 12)",
        "if": "commit_message =~ /test\\!osx/",
        "os": "osx",
        "osx_image": "xcode12",
        "before_install": [
          "brew update"
        ],
        "install": [
          "brew install make git bash"
        ],
        "script": [
          "export TMPDIR=$(mktemp -d) && export PATH=\"/usr/local/opt/make/libexec/gnubin:$PATH\" && make test && make PREFIX=${TMPDIR}/install"
        ]
      },
      {
        "stage": "build & deploy"
      },
      {
        "name": "build & deploy",
        "os": "linux",
        "dist": "focal",
        "install": [
          "pushd /tmp && wget 'https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz' && tar xzf make-4.4.1.tar.gz && cd make-4.4.1 && ./configure --prefix=/usr/local && sudo make install && popd"
        ],
        "script": [
          "make package-rpm package-deb"
        ],
        "if": "(branch = master) OR (tag IS present) OR (commit_message =~ /\\!build/)",
        "before_deploy": [
          "[[ -z ${BMAKELIB_VERSION} ]] && export BMAKELIB_VERSION=$(<src/VERSION)"
        ],
        "deploy": [
          {
            "provider": "releases",
            "draft": true,
            "cleanup": false,
            "overwrite": true,
            "on": {
              "tags": true
            },
            "token": {
              "secure": "ilFr/G75yFMYV5tNDEbt9xtGWoB1tWZdYh4oiGpx20TxK283NW3MJ/cZxQLTs1fBRe8DYRLiAzYdTfdLzjtKyCUfKkTaBCOIs4kKRphd3Od4iNI42AgA6hyT8edeCsyDd0uTui+ZDi7Z2rGCW29PDvWh67GZ31ksTl5bWj+gWtU0Hc+KnBBFGQ+N9U1aC1l7SYnKnGzPrtguoEDKBVoA5lURLc/dmoA51ACV921lJwSALsHwTqSVpW5cS+1xnTOXaFDsm6ebjG8mygzLBv6D54/GnYnpEBt+NhoXtHRP2Q+fWLqlxEDyj8xP8/eE5o/okl1LMz1d8fthYHh6duBT0O8GL6TMlMZAJClTYMPuFbLSyNkHynHjdztGZHZPsTX8zJoizPNVbZE+pr5eydaY6y6Uzp0wJGxb+dNrGfuc0EaPGHb904i32PqSb/AeAFrVHUXTvFlu8zIURe5AcegthCZUAULzAxLcpMX31/yicbNyKph4q7MktzWsYWJ8wuAsCjOLS9yaSkQM7jbTzsG+Xaz2KrQtL52//pLMCYzMPHOxrrtRiCVEhRmQ5K4Z8020yfYPEzOSedZHN1ySIvhLgoCEWRETA9/PGXTa+1JthHNjkciO5e3FPyYu+Lze1UGYO4S4JEwMpH50tJber1sm3PYuYUu5W6EQBL4ORns9b/s="
            },
            "file_glob": true,
            "file": [
              "dist/bmakelib-*.tar.gz",
              "dist/bmakelib-*.noarch.rpm",
              "dist/bmakelib_*_all.deb"
            ]
          }
        ]
      }
    ]
  }
}