Skip to content

Commit 3f512a0

Browse files
committed
disable stuff
Signed-off-by: Tuomas Katila <[email protected]>
1 parent 35011b0 commit 3f512a0

File tree

2 files changed

+62
-62
lines changed

2 files changed

+62
-62
lines changed

.github/workflows/devel.yaml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -9,50 +9,50 @@ permissions:
99
pull-requests: read
1010

1111
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"
4848

4949
# devel image push
5050
publish:
5151
permissions:
5252
contents: read
5353
id-token: write
54-
needs:
55-
- e2e
56-
- build
54+
# needs:
55+
# - e2e
56+
# - build
5757
uses: "./.github/workflows/lib-publish.yaml"
5858
secrets: inherit

.github/workflows/lib-publish.yaml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -103,26 +103,26 @@ jobs:
103103
sudo freshclam
104104
docker save $FULL_IMAGE -o $IMG_FILE
105105
clamscan $IMG_FILE
106-
- name: Test image base layer
107-
# Don't run base layer check for selected images
108-
if: ${{ !contains(fromJson(env.no_base_check), matrix.image) }}
109-
run: IMG=${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }} make test-image-base-layer BUILDER=docker
110-
- name: Login
111-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
112-
with:
113-
username: ${{ secrets.DOCKERHUB_USER }}
114-
password: ${{ secrets.DOCKERHUB_PASS }}
115-
- name: Push
116-
run: docker push ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }}
117-
- name: Get image digest
118-
if: ${{ inputs.image_tag != 'devel' }}
119-
id: digest
120-
run: |
121-
echo "image_sha=$(docker inspect --format='{{index .RepoDigests 0}}' ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }})" >> $GITHUB_OUTPUT
122-
- name: Install cosign
123-
if: ${{ inputs.image_tag != 'devel' }}
124-
uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 #v3.6.0
125-
- name: Keyless image sign
126-
if: ${{ inputs.image_tag != 'devel' }}
127-
run: |
128-
cosign sign --yes ${{ steps.digest.outputs.image_sha }}
106+
# - name: Test image base layer
107+
# # Don't run base layer check for selected images
108+
# if: ${{ !contains(fromJson(env.no_base_check), matrix.image) }}
109+
# run: IMG=${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }} make test-image-base-layer BUILDER=docker
110+
# - name: Login
111+
# uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
112+
# with:
113+
# username: ${{ secrets.DOCKERHUB_USER }}
114+
# password: ${{ secrets.DOCKERHUB_PASS }}
115+
# - name: Push
116+
# run: docker push ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }}
117+
# - name: Get image digest
118+
# if: ${{ inputs.image_tag != 'devel' }}
119+
# id: digest
120+
# run: |
121+
# echo "image_sha=$(docker inspect --format='{{index .RepoDigests 0}}' ${{ inputs.registry }}/${{ matrix.image }}:${{ inputs.image_tag }})" >> $GITHUB_OUTPUT
122+
# - name: Install cosign
123+
# if: ${{ inputs.image_tag != 'devel' }}
124+
# uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 #v3.6.0
125+
# - name: Keyless image sign
126+
# if: ${{ inputs.image_tag != 'devel' }}
127+
# run: |
128+
# cosign sign --yes ${{ steps.digest.outputs.image_sha }}

0 commit comments

Comments
 (0)