Skip to content

Commit

Permalink
refactor: add cache to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
farbodahm committed Nov 5, 2024
1 parent aa59f23 commit 23d1594
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,33 @@ on:
- main

jobs:
# Mac tests and Ubuntu tests are separated so that Ubuntu tests can
# run on both PRs and main; and Mac tests only on main branch.
ubuntu_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: cachix/install-nix-action@v26

- name: Setup Nix Store in User Directory
run: |
mkdir -p ~/.cache/nix/store
sudo echo "local /home/runner/.cache/nix/store" > /etc/nix/nix.conf
- uses: cachix/cachix-action@v14
with:
name: devenv

- name: Install devenv.sh
run: nix profile install nixpkgs#devenv

- name: Cache Nix Store
uses: actions/cache@v3
with:
path: ~/.cache/nix/store
key: nix-store-${{ runner.os }}-${{ hashFiles('**/shell.nix') }}
restore-keys: |
nix-store-${{ runner.os }}-
- name: Build the devenv shell and run any pre-commit hooks
run: devenv test

Expand All @@ -31,6 +43,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Cache Nix Store
uses: actions/cache@v3
with:
path: /nix/store
key: nix-store-${{ runner.os }}-${{ hashFiles('**/shell.nix') }}
restore-keys: |
nix-store-${{ runner.os }}-
- name: Setup Docker (macOS) with Colima
run: |
brew install docker docker-compose colima
Expand Down

0 comments on commit 23d1594

Please sign in to comment.