Skip to content

Commit

Permalink
feat: Add lake CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Anderssorby committed Dec 25, 2023
1 parent 54115d3 commit ad940d3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 4 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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@v16
with:
install_url: https://nixos-nix-install-tests.cachix.org/serve/i6laym9jw3wg9mw6ncyrk6gjx4l34vvx/install
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
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@v2
- name: build
run: nix develop $NIX_BUILD_ARGS --command lake build

- name: test SDL
run: nix develop $NIX_BUILD_ARGS --command lake exe Tests
8 changes: 4 additions & 4 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
extra_nix_config: |
experimental-features = nix-command flakes ca-references
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v10
with:
name: yatima
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
# - uses: cachix/cachix-action@v10
# with:
# name: yatima
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Nix build
run: nix build $NIX_BUILD_ARGS
- name: Nix shell
Expand Down

0 comments on commit ad940d3

Please sign in to comment.