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

Release 0.4.2 #39

Merged
merged 1 commit into from
Aug 20, 2023

bump version

3a5a60a
Select commit
Loading
Failed to load commit list.
Merged

Release 0.4.2 #39

bump version
3a5a60a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Aug 20, 2023 in 1m 20s

Build Errored

The build errored.

Details

This is a normal build for the release-0.4.2 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.

Job OS State
103.1 focal (20.04) Linux errored
103.2 jammy (22.04) Linux errored

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Xenial)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "jobs": {
    "include": [
      {
        "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": [
          "PATH=\"/usr/local/bin:$PATH\" make test"
        ]
      },
      {
        "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": [
          "PATH=\"/usr/local/bin:$PATH\" make test"
        ]
      },
      {
        "name": "osx xcode12",
        "if": "commit_message =~ /build\\!osx/",
        "os": "osx",
        "osx_image": "xcode12",
        "before_install": [
          "brew update"
        ],
        "install": [
          "brew install make git bash"
        ],
        "script": [
          "PATH=\"/usr/local/opt/make/libexec/gnubin:$PATH\" make test"
        ]
      }
    ]
  }
}