summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/.github
diff options
context:
space:
mode:
Diffstat (limited to 'dom/webgpu/tests/cts/checkout/.github')
-rw-r--r--dom/webgpu/tests/cts/checkout/.github/pull_request_template.md21
-rw-r--r--dom/webgpu/tests/cts/checkout/.github/workflows/pr.yml25
-rw-r--r--dom/webgpu/tests/cts/checkout/.github/workflows/push.yml26
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