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 6, 2024
1 parent aa59f23 commit 682cb80
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,25 @@ 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

# Add a separate step to adjust permissions
- name: Adjust Permissions on Nix Store
run: sudo mkdir /nix && sudo chown -R $USER:$USER /nix/

- 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 }}-
- uses: cachix/install-nix-action@v26

- uses: cachix/cachix-action@v14
with:
name: devenv
Expand All @@ -31,6 +42,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 682cb80

Please sign in to comment.