From 2e881abad171f4f516369dd08ebd0124075b076f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 3 Jun 2020 15:43:22 +0200 Subject: [PATCH 1/2] github actions -> travis --- .github/workflows/ci.yml | 13 +++++++++++++ .travis.yml | 7 ------- 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..a4c68290 --- /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 e112de4a..00000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: cpp -dist: xenial -script: - - ./bootstrap.sh - - ./configure - - make - - cd tests && make check From ab0d67ba181b168735363d9e769f4c609b26aa1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 3 Jun 2020 15:47:43 +0200 Subject: [PATCH 2/2] nixpkgs: 19.03 -> 20.03 --- release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 2cf91814..06bf91d3 100644 --- a/release.nix +++ b/release.nix @@ -1,5 +1,5 @@ { patchelfSrc ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; } -, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz +, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-20.03.tar.gz , officialRelease ? false }: