diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/webgpu/tests/cts/checkout/.github | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/webgpu/tests/cts/checkout/.github')
3 files changed, 72 insertions, 0 deletions
diff --git a/dom/webgpu/tests/cts/checkout/.github/pull_request_template.md b/dom/webgpu/tests/cts/checkout/.github/pull_request_template.md new file mode 100644 index 0000000000..7fadba0fc3 --- /dev/null +++ b/dom/webgpu/tests/cts/checkout/.github/pull_request_template.md @@ -0,0 +1,21 @@ + + + +Issue: #<!-- Fill in the issue number here. See docs/intro/life_of.md --> + +<hr> + +**Requirements for PR author:** + +- [ ] All missing test coverage is tracked with "TODO" or `.unimplemented()`. +- [ ] New helpers are `/** documented */` and new helper files are found in `helper_index.txt`. +- [ ] Test behaves as expected in a WebGPU implementation. (If not passing, explain above.) + +**Requirements for [reviewer sign-off](https://github.com/gpuweb/cts/blob/main/docs/reviews.md):** + +- [ ] Tests are properly located in the test tree. +- [ ] [Test descriptions](https://github.com/gpuweb/cts/blob/main/docs/intro/plans.md) allow a reader to "read only the test plans and evaluate coverage completeness", and accurately reflect the test code. +- [ ] Tests provide complete coverage (including validation control cases). **Missing coverage MUST be covered by TODOs.** +- [ ] Helpers and types promote readability and maintainability. + +When landing this PR, be sure to make any necessary issue status updates. diff --git a/dom/webgpu/tests/cts/checkout/.github/workflows/pr.yml b/dom/webgpu/tests/cts/checkout/.github/workflows/pr.yml new file mode 100644 index 0000000000..a398bf13ac --- /dev/null +++ b/dom/webgpu/tests/cts/checkout/.github/workflows/pr.yml @@ -0,0 +1,25 @@ +name: Pull Request CI + +on: + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + persist-credentials: false + - uses: actions/setup-node@v3 + with: + node-version: "16.x" + - run: npm ci + - run: npm test + - name: copy out-wpt to wpt tree + run: | + git clone --depth 2 https://github.com/web-platform-tests/wpt.git + rsync -av out-wpt/ wpt/webgpu + - name: test wpt lint + run: ./wpt lint + working-directory: ./wpt diff --git a/dom/webgpu/tests/cts/checkout/.github/workflows/push.yml b/dom/webgpu/tests/cts/checkout/.github/workflows/push.yml new file mode 100644 index 0000000000..6aa7a34e04 --- /dev/null +++ b/dom/webgpu/tests/cts/checkout/.github/workflows/push.yml @@ -0,0 +1,26 @@ +name: Push CI + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.1 + with: + persist-credentials: false + - uses: actions/setup-node@v2-beta + with: + node-version: "16.x" + - run: npm ci + - run: | + npm test + mkdir deploy-build/ + cp -r README.md src standalone out out-wpt docs tools deploy-build/ + - uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + BRANCH: gh-pages + FOLDER: deploy-build + CLEAN: true |