We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d433864 commit 130f087Copy full SHA for 130f087
.github/workflows/ci.yml
@@ -1032,7 +1032,7 @@ jobs:
1032
TEST_DATA_BYTES: 10000
1033
run: |
1034
date
1035
- make FLUVIO_MODE=local FLUVIO_BIN=~/bin/fluvio resume-test
+ make FLUVIO_BIN=~/bin/fluvio resume-test
1036
1037
- name: Run diagnostics
1038
if: ${{ !success() }}
makefiles/test.mk
@@ -181,6 +181,9 @@ ifeq (${CI},true)
181
# In CI, we expect all artifacts to already be built and loaded for the script
182
upgrade-test:
183
./tests/upgrade-test.sh
184
+else ifeq (${FLUVIO_MODE},local)
185
+upgrade-test: build-cli
186
+ ./tests/upgrade-test.sh
187
else
188
# When not in CI (i.e. development), load the dev k8 image before running test
189
upgrade-test: build-cli build_k8_image
0 commit comments