Skip to content

Commit 78cbb0b

Browse files
authored
Merge pull request #99 from gardenlinux/fix/do-not-build-platform-test-images
do not build platform test images
2 parents fbb5bec + 7c572be commit 78cbb0b

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
- name: use VERSION file to support dev build on rel-branch
2323
id: version
2424
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT
25-
2625
build:
2726
needs: [set_version]
28-
uses: gardenlinux/gardenlinux/.github/workflows/build.yml@d9625e7e1dfbeb69952dd9efee7e7f21235f25c6
27+
uses: gardenlinux/gardenlinux/.github/workflows/build.yml@27b8bddd244614718c20cbf419d4025a57114e23
2928
with:
3029
version: ${{ needs.set_version.outputs.VERSION }}
3130
# to set target to "release" or "nightly" we need proper KMS secrets
3231
# have a look at gardenlinux/.github/workflows/github.mjs
3332
target: dev
3433
fail_fast: true
34+
platform_test_build: false
3535
# secrets:
3636
# aws_region: ${{ secrets.AWS_REGION }}
3737
# aws_kms_role: ${{ secrets.KMS_SIGNING_IAM_ROLE }}

.github/workflows/nightly.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ jobs:
1919
submodules: recursive
2020
build:
2121
needs: [checkout]
22-
uses: gardenlinux/gardenlinux/.github/workflows/build.yml@d9625e7e1dfbeb69952dd9efee7e7f21235f25c6
22+
uses: gardenlinux/gardenlinux/.github/workflows/build.yml@27b8bddd244614718c20cbf419d4025a57114e23
2323
with:
2424
version: ${{ inputs.version || 'now' }}
2525
# to set target to "release" or "nightly" we need proper KMS secrets
2626
# have a look at gardenlinux/.github/workflows/github.mjs
2727
target: dev
2828
fail_fast: true
29+
platform_test_build: false
2930
# secrets:
3031
# aws_region: ${{ secrets.AWS_REGION }}
3132
# aws_kms_role: ${{ secrets.KMS_SIGNING_IAM_ROLE }}
@@ -35,7 +36,7 @@ jobs:
3536
name: Run glcli to publish to OCI
3637
needs: [build]
3738
# use custom upload_oci.yml as we do not sign the images
38-
# uses: gardenlinux/gardenlinux/.github/workflows/upload_oci.yml@d9625e7e1dfbeb69952dd9efee7e7f21235f25c6
39+
# uses: gardenlinux/gardenlinux/.github/workflows/upload_oci.yml@27b8bddd244614718c20cbf419d4025a57114e23
3940
uses: ./.github/workflows/upload_oci.yml
4041
with:
4142
version: ${{ needs.build.outputs.version }}

.github/workflows/upload_oci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
generate_matrix_publish:
1010
name: Generate flavors matrix to publish
11-
uses: gardenlinux/gardenlinux/.github/workflows/build_flavors_matrix.yml@d9625e7e1dfbeb69952dd9efee7e7f21235f25c6
11+
uses: gardenlinux/gardenlinux/.github/workflows/build_flavors_matrix.yml@27b8bddd244614718c20cbf419d4025a57114e23
1212
with:
1313
flags: '--exclude "bare-*" --no-arch --json-by-arch --build --test'
1414
upload_gl_artifacts_to_oci:

0 commit comments

Comments
 (0)