Skip to content

Commit

Permalink
build: bump to js client 16.10 (#195)
Browse files Browse the repository at this point in the history
* build: bump to js client 16.10

* ci: update gh actions
  • Loading branch information
jost-s authored Feb 28, 2024
1 parent 2044181 commit eb185b3
Show file tree
Hide file tree
Showing 27 changed files with 2,159 additions and 5,037 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ jobs:

steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install nix
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v25

- name: Set up cachix
uses: cachix/cachix-action@v12
uses: cachix/cachix-action@v14
with:
name: holochain-ci

- name: Build Nix packages
run: nix develop -c $SHELL -c "echo Nix packages built"

- name: Restore TryCP server build
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: crates/trycp_server/target
key: ${{ runner.os }}-build-trycp-${{ hashFiles('crates/trycp_server/Cargo.lock') }}
Expand All @@ -43,13 +43,13 @@ jobs:
run: nix develop -c $SHELL -c "./build-trycp.sh"

- name: Save TryCP build to cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: crates/trycp_server/target
key: ${{ runner.os }}-build-trycp-${{ hashFiles('crates/trycp_server/Cargo.lock') }}

- name: Restore test zome build
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
.cargo
Expand All @@ -60,7 +60,7 @@ jobs:
run: nix develop -c $SHELL -c "./build-fixture.sh"

- name: Save test zome build to cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
.cargo
Expand Down
Loading

0 comments on commit eb185b3

Please sign in to comment.