-
Notifications
You must be signed in to change notification settings - Fork 4
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
54115d3
commit 4673990
Showing
4 changed files
with
42 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
on: | ||
push: | ||
branches-ignore: | ||
# ignore tmp branches used by bors | ||
- 'staging.tmp*' | ||
- 'trying.tmp*' | ||
- 'staging*.tmp' | ||
pull_request: | ||
|
||
name: ci | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
env: | ||
NIX_BUILD_ARGS: -v --print-build-logs --fallback --show-trace | ||
steps: | ||
- uses: cachix/install-nix-action@v22 | ||
with: | ||
extra_nix_config: | | ||
experimental-features = nix-command flakes ca-references | ||
- name: install elan | ||
run: | | ||
set -o pipefail | ||
curl -sSfL https://github.com/leanprover/elan/releases/download/v1.4.2/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz | ||
./elan-init -y --default-toolchain none | ||
echo "$HOME/.elan/bin" >> $GITHUB_PATH | ||
- uses: actions/checkout@v3 | ||
- name: build | ||
run: nix develop $NIX_BUILD_ARGS --command lake build SDL | ||
|
||
- name: test SDL | ||
run: nix develop $NIX_BUILD_ARGS --command lake build Tests |
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
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