Clip scrollable_overflow to border box for overflow:hidden/clip #1602
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: WPT | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| RUSTDOCFLAGS: "-D warnings" | |
| CARGO_REGISTRIES_CRATES_IO_PROTOCOL: "sparse" | |
| WPT_DIR: "./wpt/tests" | |
| WPT_COMMIT: "a95401e4e06351eb1e15f0e15cf50abf08fa545f" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| wpt: | |
| name: "Run WPT Tests" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: "blitz-wpt-linux" | |
| cache-all-crates: "true" | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: libfontconfig1-dev | |
| version: 1.0 | |
| - name: Clone WPT tests | |
| run: git clone --depth 1 --revision "$WPT_COMMIT" https://github.com/web-platform-tests/wpt ./wpt/tests | |
| - name: Build WPT runner | |
| run: cargo build -rp wpt | |
| - name: Run WPT tests | |
| run: cargo run -rp wpt css | |
| - name: Compress report (zstd) | |
| run: zstd -22 --ultra -o ./wpt/output/wptreport.json.zst ./wpt/output/wptreport.json | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: wpt-report.json.zst | |
| path: ./wpt/output/wptreport.json.zst | |
| archive: false # Disables zipping. We are already using zstd compression | |
| - name: Copy files for Github pages | |
| run: | | |
| mkdir -p ./sites/gh-pages | |
| cp ./wpt/output/wptreport.json ./sites/gh-pages/wptreport.json | |
| cp ./wpt/output/wptreport.json.zst ./sites/gh-pages/wptreport.json.zst | |
| - name: Install wpt cli | |
| run: cargo install wpt@0.0.13 | |
| - name: Generate scores.json | |
| run: | | |
| wpt calc-scores --in ./sites/gh-pages/wptreport.json --out ./sites/gh-pages/wptscores.json | |
| zstd -22 --long --ultra -o ./sites/gh-pages/wptscores.json.zst ./sites/gh-pages/wptscores.json | |
| - name: Fetch main-branch results | |
| run: curl https://dioxuslabs.github.io/blitz/wptreport.json -o ./wpt/output/main-wptreport.json | |
| - name: Diff WPT results | |
| run: wpt diff ./wpt/output/main-wptreport.json ./wpt/output/wptreport.json | tee ./wpt/output/wptdiff.txt | |
| - name: Render results in step summary | |
| if: github.event_name == 'pull_request' | |
| env: | |
| RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| run: python3 ./.github/scripts/wpt_diff_to_pr.py --dry-run ./wpt/output/wptdiff.txt | |
| - name: Upload WPT diff | |
| if: github.event_name == 'pull_request' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: wpt-diff | |
| path: ./wpt/output/wptdiff.txt | |
| - name: Setup Github Pages | |
| if: github.ref == 'refs/heads/main' | |
| uses: actions/configure-pages@v6 | |
| - name: Upload Pages artifact | |
| if: github.ref == 'refs/heads/main' | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: 'sites/gh-pages' | |
| - name: Deploy to GitHub Pages | |
| if: github.ref == 'refs/heads/main' | |
| id: deployment | |
| uses: actions/deploy-pages@v5 | |
| trigger-archive: | |
| name: "Trigger Archive Job" | |
| if: github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| needs: wpt | |
| environment: WPT | |
| steps: | |
| - name: Trigger archive job | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ secrets.WPT_GITHUB_TOKEN }} | |
| repository: DioxusLabs/blitz-wpt-results | |
| event-type: update-results |