File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments