@@ -56,49 +56,49 @@ jobs:
56
56
# TODO - revert this
57
57
# commentBody: ${{ github.event.comment.body }}
58
58
commentBody : " /ga run pipeline=regression,upgrade"
59
-
60
- build-artifacts :
61
- name : build-artifacts
62
- needs : parse-params
63
- if : ${{ needs.parse-params.outputs.runTests == 'true' }}
64
- runs-on : oracle-2cpu-8gb-arm64
65
- steps :
66
- - uses : actions/checkout@v4
67
- with :
68
- fetch-depth : 0
69
- - uses : ./.github/actions/build-strimzi-binaries
70
- with :
71
- mvnArgs : " -B -DskipTests -Dmaven.javadoc.skip=true"
72
-
73
- build-images :
74
- name : build-images
75
- needs : build-artifacts
76
- if : ${{ needs.parse-params.outputs.runTests == 'true' }}
77
- strategy :
78
- matrix :
79
- architecture : [amd64, arm64]
80
- # Local registry for building the images
81
- # TODO - check if the image can be cached
82
- services :
83
- registry :
84
- image : registry:2
85
- ports :
86
- - 5000:5000
87
- # runs-on: oracle-4cpu-16gb-x86-64
88
- runs-on : oracle-2cpu-8gb-arm64
89
- steps :
90
- - uses : actions/checkout@v4
91
- with :
92
- fetch-depth : 0
93
- - uses : ./.github/actions/containers-build
94
- with :
95
- architecture : ${{ matrix.architecture }}
59
+ #
60
+ # build-artifacts:
61
+ # name: build-artifacts
62
+ # needs: parse-params
63
+ # if: ${{ needs.parse-params.outputs.runTests == 'true' }}
64
+ # runs-on: oracle-2cpu-8gb-arm64
65
+ # steps:
66
+ # - uses: actions/checkout@v4
67
+ # with:
68
+ # fetch-depth: 0
69
+ # - uses: ./.github/actions/build-strimzi-binaries
70
+ # with:
71
+ # mvnArgs: "-B -DskipTests -Dmaven.javadoc.skip=true"
72
+ #
73
+ # build-images:
74
+ # name: build-images
75
+ # needs: build-artifacts
76
+ # if: ${{ needs.parse-params.outputs.runTests == 'true' }}
77
+ # strategy:
78
+ # matrix:
79
+ # architecture: [amd64, arm64]
80
+ # # Local registry for building the images
81
+ # # TODO - check if the image can be cached
82
+ # services:
83
+ # registry:
84
+ # image: registry:2
85
+ # ports:
86
+ # - 5000:5000
87
+ # # runs-on: oracle-4cpu-16gb-x86-64
88
+ # runs-on: oracle-2cpu-8gb-arm64
89
+ # steps:
90
+ # - uses: actions/checkout@v4
91
+ # with:
92
+ # fetch-depth: 0
93
+ # - uses: ./.github/actions/containers-build
94
+ # with:
95
+ # architecture: ${{ matrix.architecture }}
96
96
97
97
run-tests :
98
98
name : run
99
99
needs :
100
100
- parse-params
101
- - build-images
101
+ # - build-images
102
102
if : ${{ needs.parse-params.outputs.runTests == 'true' }}
103
103
104
104
uses : ./.github/workflows/run-system-tests.yml
0 commit comments