File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 type : string
2323 buildcmd :
2424 description : " Build command to run"
25- required : false
25+ required : true
2626 type : string
2727 envcmd :
2828 description : " Environment setup command to run"
@@ -175,13 +175,9 @@ jobs:
175175 if [ -n "${{ env.REFS }}" ]; then
176176 REFS_ARGS="--refs ${{ env.REFS }}"
177177 fi
178- BUILD_CMD_ARGS=""
179- if [ -n "${{ env.BUILD_CMD }}" ]; then
180- BUILD_CMD_ARGS="--buildcmd ${BUILD_CMD}"
181- fi
182178 ./bin/ctf compat backward \
183179 --registry "${REGISTRY}" \
184- ${BUILD_CMD_ARGS} \
180+ --buildcmd "${BUILD_CMD}" \
185181 --envcmd "${ENV_CMD}" \
186182 --testcmd "${TEST_CMD}" \
187183 --product "${PRODUCT}" \
Original file line number Diff line number Diff line change 6666 cre-compat :
6767 uses : ./.github/workflows/devenv-compat.yml
6868 with :
69+ # bash command to build your environment, omit if you are using 'devenv'
70+ buildcmd : " echo nothing-to-build"
6971 # bash command to spin up your environment and product orchestration
7072 envcmd : " go run -C ../../core/scripts/cre/environment . env start"
7173 # bash command to run the test verifying your product
You can’t perform that action at this time.
0 commit comments