We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc7bd5 commit 5333d9dCopy full SHA for 5333d9d
1 file changed
.github/workflows/build.yml
@@ -4,7 +4,7 @@ on: [push, pull_request]
4
5
jobs:
6
7
- build:
+ build-and-test:
8
strategy:
9
matrix:
10
os: [ubuntu-latest, windows-latest, macOS-latest]
@@ -19,19 +19,10 @@ jobs:
19
- name: Build
20
run: dotnet build -c Release
21
22
- test_cpu:
23
- strategy:
24
- matrix:
25
- os: [ubuntu-latest, windows-latest, macOS-latest]
26
- needs: build
27
- runs-on: ${{ matrix.os }}
28
- steps:
29
- - name: Run tests
+ - name: Run tests on CPU
30
run: dotnet test
31
32
- test_pocl:
33
- needs: test_cpu
34
- runs-on: ubuntu_latest
+ if: runner.os == "Linux"
35
steps:
36
- name: Setup POCL and clinfo
37
run: |
0 commit comments