Skip to content

Commit 6dfc3c2

Browse files
authored
Merge pull request #204 from NixOS/github-actions
github actions -> travis
2 parents 12e2b7b + ab0d67b commit 6dfc3c2

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "CI"
2+
on:
3+
pull_request:
4+
push:
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: cachix/install-nix-action@v9
11+
with:
12+
skip_adding_nixpkgs_channel: true
13+
- run: nix-build release.nix

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

release.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ patchelfSrc ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
2-
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz
2+
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-20.03.tar.gz
33
, officialRelease ? false
44
}:
55

0 commit comments

Comments
 (0)