File tree Expand file tree Collapse file tree 3 files changed +74
-71
lines changed Expand file tree Collapse file tree 3 files changed +74
-71
lines changed Original file line number Diff line number Diff line change @@ -9,50 +9,52 @@ permissions:
9
9
pull-requests : read
10
10
11
11
jobs :
12
- trivy :
13
- permissions :
14
- actions : read
15
- contents : read
16
- security-events : write
17
- uses : " ./.github/workflows/lib-trivy.yaml"
18
- with :
19
- upload-to-github-security-tab : true
20
-
21
- validate :
22
- uses : " ./.github/workflows/lib-validate.yaml"
23
-
24
- codeql :
25
- permissions :
26
- actions : read
27
- contents : read
28
- security-events : write
29
- uses : " ./.github/workflows/lib-codeql.yaml"
30
-
31
- scorecard :
32
- permissions :
33
- contents : read
34
- id-token : write
35
- security-events : write
36
- uses : " ./.github/workflows/lib-scorecard.yaml"
37
-
38
- build :
39
- needs :
40
- - validate
41
- - trivy
42
- uses : " ./.github/workflows/lib-build.yaml"
43
-
44
- e2e :
45
- needs :
46
- - build
47
- uses : " ./.github/workflows/lib-e2e.yaml"
12
+ # trivy:
13
+ # permissions:
14
+ # actions: read
15
+ # contents: read
16
+ # security-events: write
17
+ # uses: "./.github/workflows/lib-trivy.yaml"
18
+ # with:
19
+ # upload-to-github-security-tab: true
20
+
21
+ # validate:
22
+ # uses: "./.github/workflows/lib-validate.yaml"
23
+
24
+ # codeql:
25
+ # permissions:
26
+ # actions: read
27
+ # contents: read
28
+ # security-events: write
29
+ # uses: "./.github/workflows/lib-codeql.yaml"
30
+
31
+ # scorecard:
32
+ # permissions:
33
+ # contents: read
34
+ # id-token: write
35
+ # security-events: write
36
+ # uses: "./.github/workflows/lib-scorecard.yaml"
37
+
38
+ # build:
39
+ # needs:
40
+ # - validate
41
+ # - trivy
42
+ # uses: "./.github/workflows/lib-build.yaml"
43
+
44
+ # e2e:
45
+ # needs:
46
+ # - build
47
+ # uses: "./.github/workflows/lib-e2e.yaml"
48
48
49
49
# devel image push
50
50
publish :
51
51
permissions :
52
52
contents : read
53
53
id-token : write
54
- needs :
55
- - e2e
56
- - build
54
+ # needs:
55
+ # - e2e
56
+ # - build
57
57
uses : " ./.github/workflows/lib-publish.yaml"
58
58
secrets : inherit
59
+ with :
60
+ registry : docker.io/tkatila
Original file line number Diff line number Diff line change @@ -28,27 +28,27 @@ jobs:
28
28
fail-fast : false
29
29
matrix :
30
30
image :
31
- - intel-fpga-admissionwebhook
32
- - intel-fpga-initcontainer
33
- - intel-gpu-initcontainer
31
+ # - intel-fpga-admissionwebhook
32
+ # - intel-fpga-initcontainer
33
+ # - intel-gpu-initcontainer
34
34
- intel-gpu-plugin
35
- - intel-fpga-plugin
36
- - intel-qat-initcontainer
37
- - intel-qat-plugin
38
- - intel-deviceplugin-operator
39
- - intel-sgx-admissionwebhook
40
- - intel-sgx-plugin
41
- - intel-sgx-initcontainer
42
- - intel-dsa-plugin
43
- - intel-iaa-plugin
44
- - intel-idxd-config-initcontainer
45
- - intel-dlb-plugin
46
- - intel-dlb-initcontainer
47
- - intel-xpumanager-sidecar
35
+ # - intel-fpga-plugin
36
+ # - intel-qat-initcontainer
37
+ # - intel-qat-plugin
38
+ # - intel-deviceplugin-operator
39
+ # - intel-sgx-admissionwebhook
40
+ # - intel-sgx-plugin
41
+ # - intel-sgx-initcontainer
42
+ # - intel-dsa-plugin
43
+ # - intel-iaa-plugin
44
+ # - intel-idxd-config-initcontainer
45
+ # - intel-dlb-plugin
46
+ # - intel-dlb-initcontainer
47
+ # - intel-xpumanager-sidecar
48
48
49
- # # Demo images
50
- - crypto-perf
51
- - opae-nlb-demo
49
+ # # # Demo images
50
+ # - crypto-perf
51
+ # - opae-nlb-demo
52
52
steps :
53
53
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
54
54
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
Original file line number Diff line number Diff line change @@ -20,28 +20,29 @@ jobs:
20
20
# remove first character (v)
21
21
run : echo "tag=${TAGNAME:1}" >> "$GITHUB_OUTPUT"
22
22
23
- trivy :
24
- name : Trivy
25
- uses : " ./.github/workflows/lib-trivy.yaml"
26
- permissions :
27
- actions : read
28
- contents : read
29
- security-events : write
30
- with :
31
- deployments : false
32
- dockerfiles : false
33
- export-csv : true
34
- upload-to-github-security-tab : false
23
+ # trivy:
24
+ # name: Trivy
25
+ # uses: "./.github/workflows/lib-trivy.yaml"
26
+ # permissions:
27
+ # actions: read
28
+ # contents: read
29
+ # security-events: write
30
+ # with:
31
+ # deployments: false
32
+ # dockerfiles: false
33
+ # export-csv: true
34
+ # upload-to-github-security-tab: false
35
35
36
36
build :
37
37
name : Build & Publish
38
38
permissions :
39
39
contents : read
40
40
id-token : write
41
41
needs :
42
- - trivy
42
+ # - trivy
43
43
- tag_fix
44
44
uses : " ./.github/workflows/lib-publish.yaml"
45
45
secrets : inherit
46
46
with :
47
47
image_tag : ${{ needs.tag_fix.outputs.fixed_tag }}
48
+ registry : docker.io/tkatila
You can’t perform that action at this time.
0 commit comments