diff options
-rw-r--r-- | .github/workflows/linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 517691d2e85..feca54e326c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -137,7 +137,7 @@ jobs: - name: Run tests if: ${{ inputs.wpt != 'sync' }} run: | - python3 ./mach test-wpt \ + python3 ./mach test-wpt --with-${{ env.LAYOUT }} \ --release --processes $(nproc) --timeout-multiplier 2 \ --total-chunks ${{ env.max_chunk_id }} --this-chunk ${{ matrix.chunk_id }} \ --log-raw test-wpt.${{ matrix.chunk_id }}.log \ @@ -149,7 +149,7 @@ jobs: - name: Run tests (sync) if: ${{ inputs.wpt == 'sync' }} run: | - python3 ./mach test-wpt \ + python3 ./mach test-wpt --with-${{ env.LAYOUT }} \ --release --processes $(nproc) --timeout-multiplier 2 \ --total-chunks ${{ env.max_chunk_id }} --this-chunk ${{ matrix.chunk_id }} \ --log-raw test-wpt.${{ matrix.chunk_id }}.log \ |