Skip to content

Commit

Permalink
fix(pipeline): Specify the environment ie is executing in when runnin…
Browse files Browse the repository at this point in the history
…g `make test-upstream-scenarios` (#205)
  • Loading branch information
vmarcella authored Jul 5, 2024
1 parent 37862b0 commit e5cff5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scenario-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
azcliversion: 2.53.0
inlineScript: |
apk add --no-cache make git openssh openssl helm curl jq
make test-upstream-scenarios SUBSCRIPTION=${{ secrets.AZURE_SUBSCRIPTION }}
make test-upstream-scenarios SUBSCRIPTION=${{ secrets.AZURE_SUBSCRIPTION }} ENVIRONMENT=github-action
- name: Display ie.log file
if: (success() || failure())
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test-upstream-scenarios:
if echo "$${dir}" | grep -q "CreateContainerAppDeploymentFromSource"; then \
continue; \
fi; \
($(MAKE) test-scenario SCENARIO="$${dir}README.md" SUBCRIPTION="$(SUBSCRIPTION)" WORKING_DIRECTORY="$${dir}") || exit $$?; \
($(MAKE) test-scenario SCENARIO="$${dir}README.md" SUBCRIPTION="$(SUBSCRIPTION)" WORKING_DIRECTORY="$${dir}" ENVIRONMENT="$(ENVIRONMENT)") || exit $$?; \
done

# ------------------------------- Run targets ----------------------------------
Expand Down

0 comments on commit e5cff5b

Please sign in to comment.