-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from jakeisnt/add-menhirLib-dep
add menhirLib to Nix dependencies
- Loading branch information
Showing
2 changed files
with
36 additions
and
6 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ on: | |
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
build-nix: | ||
build-nix-21-05: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -21,6 +21,16 @@ jobs: | |
nix_path: nixpkgs=channel:nixos-21.05 | ||
- run: nix-build release.nix | ||
- run: nix-shell --run "echo OK" | ||
|
||
build-nix-unstable: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: cachix/[email protected] | ||
with: | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
- run: nix-build release.nix | ||
- run: nix-shell --run "echo OK" | ||
|
||
build: | ||
# The type of runner that the job will run on | ||
|
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