Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

resolve LICENSE link 404 #496

Merged
merged 1 commit into from
Feb 13, 2024

resolve LICENSE link 404

ac29d44
Select commit
Loading
Failed to load commit list.
Merged

resolve LICENSE link 404 #496

resolve LICENSE link 404
ac29d44
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 13, 2024 in 2m 50s

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 #496 resolve LICENSE link 404.
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 C
Operating System Linux (Xenial)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "addons": {
    "apt": {
      "packages": [
        "lcov",
        "linux-libc-dev",
        "libuv1-dev",
        "liblz4-dev",
        "btrfs-progs",
        "xfsprogs",
        "zfsutils-linux"
      ]
    }
  },
  "jobs": {
    "include": [
      {
        "if": "type != pull_request",
        "compiler": "gcc",
        "dist": "bionic",
        "arch": "s390x"
      },
      {
        "if": "type == pull_request",
        "compiler": "gcc",
        "dist": "bionic",
        "arch": "arm64"
      },
      {
        "if": "type != pull_request",
        "compiler": "clang",
        "dist": "bionic",
        "arch": "ppc64le"
      }
    ]
  },
  "before_script": [
    "git clone --depth 1 https://github.com/edlund/amalgamate.git",
    "export PATH=$PATH:$PWD/amalgamate"
  ],
  "script": [
    "autoreconf -i",
    "if [ $TRAVIS_CPU_ARCH = \"s390x\" ] || [ $TRAVIS_CPU_ARCH = \"arm64\" ]; then\n  ./configure --enable-example --enable-debug\nelse\n  ./configure --enable-example --enable-debug --enable-sanitize\nfi\n",
    "amalgamate.py --config=amalgamation.json --source=$(pwd)",
    "$CC raft.c -c -D_GNU_SOURCE -DHAVE_LINUX_AIO_ABI_H -Wall -Wextra -Wpedantic -fpic",
    "./test/lib/fs.sh setup",
    "make check $(./test/lib/fs.sh detect) || (cat ./test-suite.log && false)",
    "./test/lib/fs.sh teardown"
  ]
}