-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d36ece2
commit f9c18e8
Showing
5 changed files
with
51 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
.git* export-ignore | ||
.travis.yml export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters