Skip to content

Commit 63d5154

Browse files
committed
drop! update V8
1 parent 4f10988 commit 63d5154

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test-shared.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,12 @@ jobs:
6969
with:
7070
persist-credentials: false
7171

72-
- name: Patch npm gyp (to be able to build addons for the tests)
72+
- name: Update V8
7373
if: ${{ github.event_name != 'workflow_dispatch' }}
7474
run: |
75-
curl -L https://github.com/nodejs/gyp-next/commit/8224deef984add7e7afe846cfb82c9d3fa6da1fb.diff \
76-
| git apply --directory=deps/npm/node_modules/node-gyp/gyp
77-
git add deps/npm/node_modules/node-gyp/gyp
7875
git config --local user.email "[email protected]"
7976
git config --local user.name "Node.js GitHub Bot"
80-
git commit --fixup HEAD
77+
curl -L https://github.com/nodejs/node/pull/59805.patch | git am
8178
8279
- name: Make tarball
8380
if: ${{ github.event_name != 'workflow_dispatch' }}
@@ -139,6 +136,9 @@ jobs:
139136
run: |
140137
[ "$(git rev-parse HEAD^2)" = "$EXPECTED_SHA" ]
141138
git reset HEAD^ --hard
139+
git config --local user.email "[email protected]"
140+
git config --local user.name "Node.js GitHub Bot"
141+
curl -L https://github.com/nodejs/node/pull/59805.patch | git am
142142
env:
143143
EXPECTED_SHA: ${{ inputs.commit }}
144144

@@ -184,7 +184,7 @@ jobs:
184184
if: ${{ github.event_name == 'workflow_dispatch' }}
185185
run: |
186186
mv out/Release/node base_node
187-
git reset FETCH_HEAD --hard
187+
git merge FETCH_HEAD --no-edit
188188
nix-shell \
189189
-I nixpkgs=./nixpkgs.nix \
190190
--pure \

0 commit comments

Comments
 (0)