Skip to content

Commit 3eaea68

Browse files
author
Will Atlas
committed
Fix
1 parent bf9b112 commit 3eaea68

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,7 @@ jobs:
237237
(matrix.config.variant == 'debug' || matrix.config.variant ==
238238
'release' ) && matrix.config.pointer_compression == false
239239
run:
240-
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{
241-
env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
240+
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
242241

243242
- name: Test -- With Pointer Compression
244243
env:
@@ -247,10 +246,9 @@ jobs:
247246
(matrix.config.variant == 'debug' || matrix.config.variant == 'release') &&
248247
matrix.config.pointer_compression == true
249248
run:
250-
// Enable pointer_compression sed -i 's/v8_enable_pointer_compression
251-
= false/v8_enable_pointer_compression = true/s' .gn ${{
252-
matrix.config.cargo }} test -vv --all-targets --locked ${{
253-
env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
249+
# Enable pointer_compression
250+
sed -i 's/v8_enable_pointer_compression = false/v8_enable_pointer_compression = true/s' .gn
251+
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{ env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
254252

255253
- name: Clippy
256254
run:

0 commit comments

Comments
 (0)