summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2020-06-03 13:43:22 (GMT)
committerDomen Kožar <domen@dev.si>2020-06-03 13:49:33 (GMT)
commit2e881abad171f4f516369dd08ebd0124075b076f (patch)
treec50ecc9b4428de28db48b5665ce5f0b6ced5e11e
parent12e2b7b813c3b8c9f18399fbffa0337c688ab09e (diff)
downloadpatchelf-2e881abad171f4f516369dd08ebd0124075b076f.zip
patchelf-2e881abad171f4f516369dd08ebd0124075b076f.tar.gz
patchelf-2e881abad171f4f516369dd08ebd0124075b076f.tar.bz2
github actions -> travis
-rw-r--r--.github/workflows/ci.yml13
-rw-r--r--.travis.yml7
2 files changed, 13 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..a4c6829
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,13 @@
+name: "CI"
+on:
+ pull_request:
+ push:
+jobs:
+ tests:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: cachix/install-nix-action@v9
+ with:
+ skip_adding_nixpkgs_channel: true
+ - run: nix-build release.nix
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index e112de4..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-language: cpp
-dist: xenial
-script:
- - ./bootstrap.sh
- - ./configure
- - make
- - cd tests && make check