Skip to content

Commit

Permalink
build: bump to js client dev.7 (#194)
Browse files Browse the repository at this point in the history
* build: upgrade packages

* fix: adapt tests to changes in client

* ci: update actions
  • Loading branch information
jost-s authored Feb 28, 2024
1 parent 141fb67 commit 8a6c0bf
Show file tree
Hide file tree
Showing 10 changed files with 765 additions and 719 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
uses: actions/checkout@v4

- name: Install nix
uses: cachix/install-nix-action@v23
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 @@ -42,13 +42,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 @@ -59,7 +59,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 8a6c0bf

Please sign in to comment.