File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
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
60
60
E2E_TEST_CHUNK : ${{ matrix.parallel-id }}
61
61
E2E_NODES : 2
62
62
E2E_KUBECONFIG_ROOT : ${{ github.workspace }}/kubeconfigs
63
- UPDATE_FIXTURES : ${{ needs.build.outputs.UPDATE_FIXTURES }}
64
63
steps :
65
64
# checkout code and setup go
66
65
- uses : actions/checkout@v4
@@ -106,7 +105,7 @@ jobs:
106
105
KIND_CREATE_OPTS="--kubeconfig=${E2E_KUBECONFIG_ROOT}/kubeconfig-${i}" \
107
106
HELM_INSTALL_OPTS="--kubeconfig ${E2E_KUBECONFIG_ROOT}/kubeconfig-${i}" \
108
107
make kind-create deploy;
109
- if [ "${UPDATE_FIXTURES}" == "true" ]; then
108
+ if [ "${{ needs.build.outputs. UPDATE_FIXTURES } }" == "true" ]; then
110
109
scripts/e2e_test_fixtures.sh --kind-load
111
110
fi
112
111
done
You can’t perform that action at this time.
0 commit comments