Skip to content

Commit 43e8dd7

Browse files
authored
Merge pull request #54 from byako/byako-public-build-workflow
Add first public workflow to build container images.
2 parents 47173c1 + d149162 commit 43e8dd7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)