diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-06-10 13:41:28 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-06-11 12:15:02 +0200 |
commit | aab86b12ddc2abd485f5eb76acbb90b1ed5fdd6c (patch) | |
tree | 74c1c3615aa4a72e814afdd84474aff4ba81b7c0 /.github/workflows | |
parent | github: rename CIFuzz workflow file to cifuzz.yml (diff) | |
download | systemd-aab86b12ddc2abd485f5eb76acbb90b1ed5fdd6c.tar.xz systemd-aab86b12ddc2abd485f5eb76acbb90b1ed5fdd6c.zip |
github: move the clang/gcc build check to GH Actions
Travis CI is getting overloaded, so let's move some load over to GitHub
Actions.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build_test.yml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml new file mode 100644 index 0000000000..2a6f0df9c4 --- /dev/null +++ b/.github/workflows/build_test.yml @@ -0,0 +1,44 @@ +--- +# vi: ts=2 sw=2 et: +# +name: Build test +on: + pull_request: + paths: + - '**/meson.build' + - '.github/workflows/**' + - 'meson_options.txt' + - 'src/**' + - 'test/fuzz/**' + - 'travis-ci/managers/ubuntu-build-check.sh' + +jobs: + build: + runs-on: ubuntu-18.04 + strategy: + fail-fast: false + matrix: + env: + # As we use postfixed clang/gcc binaries, we need to override $AR + # as well, otherwise meson falls back to ar from binutils which + # doesn't work with LTO + - { CC: "clang-10", CXX: "clang++-10", AR: "llvm-ar-10" } + - { CC: "gcc-10", CXX: "g++-10", AR: "gcc-ar-10" } + env: ${{ matrix.env }} + steps: + - name: Repository checkout + uses: actions/checkout@v1 + - name: Configure custom APT repositories for ${{ env.CC }} + run: | + if [[ "$CC" == clang-* ]]; then + # Latest LLVM stack deb packages provided by https://apt.llvm.org/ + sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" + sudo apt-get install clang-10 llvm-10 + else + # Latest gcc stack deb packages provided by + # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test + sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + sudo apt-get install gcc-10 + fi + - name: Build check (${{ env.CC }}) + run: sudo -E travis-ci/managers/ubuntu-build-check.sh |