We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 47173c1 + d149162 commit 43e8dd7Copy full SHA for 43e8dd7
1 file changed
.github/workflows/build.yaml
@@ -0,0 +1,28 @@
1
+name: Build all targets
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+permissions:
9
+ contents: read
10
+ pull-requests: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-24.04
15
+ strategy:
16
+ matrix:
17
+ target:
18
+ - gaudi-container-build
19
+ - gpu-container-build
20
+ - qat-container-build
21
22
+ steps:
23
+ - name: Checkout code
24
+ uses: actions/checkout@v4
25
+ - name: Build
26
+ env:
27
+ TARGET_NAME: ${{ matrix.target }}
28
+ run: make ${TARGET_NAME}
0 commit comments