-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (54 loc) · 1.58 KB
/
test.yml
File metadata and controls
65 lines (54 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
packages: write
env:
BASE_IMAGE: ghcr.io/cerbsim/webgpu-base
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build base image
uses: docker/build-push-action@v6
with:
context: .
file: tests/Dockerfile.base
tags: |
webgpu-base
${{ env.BASE_IMAGE }}:latest
load: true
cache-from: |
type=registry,ref=${{ env.BASE_IMAGE }}:latest
type=gha,scope=webgpu-base
cache-to: type=gha,mode=max,scope=webgpu-base
- name: Push base image to GHCR
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: docker push ${{ env.BASE_IMAGE }}:latest
- name: Build test image
run: docker build -f tests/Dockerfile --build-arg BASE_IMAGE=webgpu-base -t webgpu-tests .
- name: Run tests
run: |
docker run --rm \
-v ${{ github.workspace }}/tests/output:/app/tests/output \
webgpu-tests
- name: Upload test output
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-output
path: tests/output/