File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 31
31
echo "${JOB_ENV}" >> $GITHUB_OUTPUT
32
32
- name : Build e2e fixtures if necessary
33
33
if : env.UPDATE_FIXTURES == 'true'
34
- run : make build-e2e-fixtures
34
+ run : scripts/e2e_test_fixtures.sh
35
35
- name : Save images
36
36
run : |
37
37
if [ "${UPDATE_FIXTURES}" == "true" ]; then
43
43
with :
44
44
name : docker-images
45
45
path : " *.tar.gz"
46
- working-directory : ${{ github.workspace }}
47
46
48
47
# Run e2e tests in parallel jobs
49
48
# Take olm image from the previous stage
60
59
E2E_TEST_CHUNK : ${{ matrix.parallel-id }}
61
60
E2E_NODES : 2
62
61
E2E_KUBECONFIG_ROOT : ${{ github.workspace }}/kubeconfigs
63
- UPDATE_FIXTURES : ${{ needs.build.outputs.UPDATE_FIXTURES }}
64
62
steps :
65
63
# checkout code and setup go
66
64
- uses : actions/checkout@v4
@@ -106,7 +104,7 @@ jobs:
106
104
KIND_CREATE_OPTS="--kubeconfig=${E2E_KUBECONFIG_ROOT}/kubeconfig-${i}" \
107
105
HELM_INSTALL_OPTS="--kubeconfig ${E2E_KUBECONFIG_ROOT}/kubeconfig-${i}" \
108
106
make kind-create deploy;
109
- if [ "${UPDATE_FIXTURES}" == "true" ]; then
107
+ if [ "${{ needs.build.outputs. UPDATE_FIXTURES } }" == "true" ]; then
110
108
scripts/e2e_test_fixtures.sh --kind-load
111
109
fi
112
110
done
You can’t perform that action at this time.
0 commit comments