-
Notifications
You must be signed in to change notification settings - Fork 205
60 lines (56 loc) · 1.59 KB
/
lib-build.yaml
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
name: build
on:
workflow_call:
permissions:
contents: read
jobs:
image:
name: Build image
runs-on: ubuntu-24.04
strategy:
matrix:
image:
- intel-fpga-admissionwebhook
- intel-fpga-initcontainer
- intel-gpu-fakedev
- intel-gpu-initcontainer
- intel-gpu-plugin
- intel-gpu-levelzero
- intel-fpga-plugin
- intel-qat-initcontainer
- intel-qat-plugin
- intel-qat-plugin-kerneldrv
- intel-deviceplugin-operator
- intel-sgx-admissionwebhook
- intel-sgx-plugin
- intel-sgx-initcontainer
- intel-dsa-plugin
- intel-iaa-plugin
- intel-idxd-config-initcontainer
- intel-dlb-plugin
- intel-dlb-initcontainer
- intel-xpumanager-sidecar
# # Demo images
- crypto-perf
- accel-config-demo
- intel-opencl-icd
- opae-nlb-demo
- openssl-qat-engine
- sgx-sdk-demo
- sgx-aesmd-demo
- dlb-dpdk-demo
- dlb-libdlb-demo
builder: [buildah, docker]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
go-version-file: go.mod
check-latest: true
- run: make -e vendor
- name: Build image
env:
IMAGE_NAME: ${{ matrix.image }}
BUILDER_NAME: ${{ matrix.builder }}
run: |
make ${IMAGE_NAME} BUILDER=${BUILDER_NAME}