diff options
author | sagudev <16504129+sagudev@users.noreply.github.com> | 2023-04-24 10:29:57 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-04-25 09:53:01 +0200 |
commit | 8bed625d28fea9cd23e7721ae332b26f2a94e20d (patch) | |
tree | de12d3dafbaf375dacfee18aa5062aa11643e8af | |
parent | b3670c503db13d4349d0b1a661c2bf566ba16e48 (diff) | |
download | servo-8bed625d28fea9cd23e7721ae332b26f2a94e20d.tar.gz servo-8bed625d28fea9cd23e7721ae332b26f2a94e20d.zip |
Use defined layout for wpt test
-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 \ |