-
Notifications
You must be signed in to change notification settings - Fork 81
40 lines (38 loc) · 1.06 KB
/
linux_builds.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: linux
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-22.04, cc: gcc-12 }
- { os: ubuntu-22.04, cc: clang-15 }
- { os: ubuntu-20.04, cc: gcc-10 }
- { os: ubuntu-20.04, cc: clang-11 }
steps:
- uses: actions/checkout@v3
- name: dependencies
env:
CC: ${{ matrix.cc }}
run: |
sudo apt -q update
sudo apt install --no-install-recommends -q -y \
autoconf automake libtool pkg-config libfido2-dev libpam-dev \
git2cl asciidoc-base xsltproc docbook-xsl
if [ "${CC%-*}" == "clang" ]; then
sudo apt install -q -y ${CC%-*}-tools-${CC#clang-}
else
sudo apt install -q -y "${CC}"
fi
- name: build
env:
CC: ${{ matrix.cc }}
run: |
/bin/bash -eux build-aux/ci/build-linux-${CC%-*}.sh
- name: distcheck
env:
CC: ${{ matrix.cc }}
run: |
/bin/bash -eux build-aux/ci/distcheck.sh