diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-03-26 21:32:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-03-28 10:38:50 -0400 |
commit | f9c18e80595fae26f1d45dab5427c7122d15cb35 (patch) | |
tree | 65aab4bb54b4fd228dcbd2fd2a773ad612621417 /.github | |
parent | d36ece2ca7498b7ba5485d5010439b57f006c9c8 (diff) | |
download | bfs-f9c18e80595fae26f1d45dab5427c7122d15cb35.tar.xz |
ci: Switch to GitHub Actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 35 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 14 |
2 files changed, 49 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 0000000..67943f4 --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,35 @@ +name: Linux + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: | + sudo dpkg --add-architecture i386 + sudo apt-get update -y + sudo apt-get install -y \ + gcc-multilib \ + acl \ + libacl1-dev \ + libacl1:i386 \ + attr \ + libattr1-dev \ + libattr1:i386 \ + libcap2-bin \ + libcap-dev \ + libcap2:i386 + # Ubuntu doesn't let you install the -dev packages for both amd64 and + # i386 at once, so we make our own symlinks to fix -m32 -lacl -lattr -lcap + sudo ln -s libacl.so.1 /lib/i386-linux-gnu/libacl.so + sudo ln -s libattr.so.1 /lib/i386-linux-gnu/libattr.so + sudo ln -s libcap.so.2 /lib/i386-linux-gnu/libcap.so + + - name: Run tests + run: | + make -j$(nproc) distcheck diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..ab359e1 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,14 @@ +name: macOS + +on: [push, pull_request] + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run tests + run: | + make -j$(sysctl -n hw.ncpu) distcheck |