Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Atlas committed Jan 31, 2025
1 parent bf9b112 commit 3eaea68
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,7 @@ jobs:
(matrix.config.variant == 'debug' || matrix.config.variant ==
'release' ) && matrix.config.pointer_compression == false
run:
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{
env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}

- name: Test -- With Pointer Compression
env:
Expand All @@ -247,10 +246,9 @@ jobs:
(matrix.config.variant == 'debug' || matrix.config.variant == 'release') &&
matrix.config.pointer_compression == true
run:
// Enable pointer_compression sed -i 's/v8_enable_pointer_compression
= false/v8_enable_pointer_compression = true/s' .gn ${{
matrix.config.cargo }} test -vv --all-targets --locked ${{
env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}
# Enable pointer_compression
sed -i 's/v8_enable_pointer_compression = false/v8_enable_pointer_compression = true/s' .gn
${{ matrix.config.cargo }} test -vv --all-targets --locked ${{ env.CARGO_VARIANT_FLAG }} --target ${{ matrix.config.target }}

- name: Clippy
run:
Expand Down

0 comments on commit 3eaea68

Please sign in to comment.