Skip to content

Commit

Permalink
[Github Actions] Caching strategy improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Sep 27, 2023
1 parent 8c225cf commit 4be5618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/osx-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
v8/out.gn/x64.release.sample/obj/libv8_monolith.lib
v8/out.gn/x64.release.sample/icudtl.dat
v8/include
key: ${{ runner.os }}-build-v8-${{ hashFiles('v8/src/**') }}
key: ${{ matrix.os }}-build-v8-${{ hashFiles('v8/src/**') }}

- name: Build Google V8
id: build-v8
Expand All @@ -73,7 +73,7 @@ jobs:
v8/out.gn/x64.release.sample/obj/libv8_monolith.a
v8/out.gn/x64.release.sample/icudtl.dat
v8/include
key: ${{ runner.os }}-build-v8-${{ hashFiles('v8/src/**') }}
key: ${{ matrix.os }}-build-v8-${{ hashFiles('v8/src/**') }}

build:
name: Build wheel on ${{ matrix.os }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
v8/out.gn/x64.release.sample/obj/libv8_monolith.lib
v8/out.gn/x64.release.sample/icudtl.dat
v8/include
key: ${{ runner.os }}-build-v8-${{ needs.build-v8.outputs.v8-hash }}
key: ${{ matrix.os }}-build-v8-${{ needs.build-v8.outputs.v8-hash }}

- name: Build wheel
env:
Expand Down

0 comments on commit 4be5618

Please sign in to comment.