Skip to content

Commit

Permalink
ci: Fix test-cli: STATIC_FILES=false (#5673)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec authored Apr 14, 2021
1 parent e80177a commit fce82bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- run: make start PROFILE=${{matrix.profile}} E2E_EXECUTOR=${{matrix.containerRuntimeExecutor}} AUTH_MODE=client STATIC_FILES=false DEV_IMAGE=true LOG_LEVEL=info 2>&1 > /tmp/log/argo-e2e/argo.log &
- run: make executor-image wait STATIC_FILES=false DEV_IMAGE=true
timeout-minutes: 3
- run: make ${{matrix.test}} E2E_TIMEOUT=1m
- run: make ${{matrix.test}} E2E_TIMEOUT=1m STATIC_FILES=false
- name: Upload logs
if: ${{ failure() }}
uses: actions/upload-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (s *CLISuite) setMode(mode string) {
_ = os.Unsetenv("ARGO_INSTANCEID")
_ = os.Setenv("ARGO_SERVER", "localhost:2746")
_ = os.Unsetenv("ARGO_BASE_HREF")
_ = os.Unsetenv("ARGO_SECURE")
_ = os.Setenv("ARGO_SECURE", "false")
_ = os.Unsetenv("ARGO_INSECURE_SKIP_VERIFY")
_ = os.Setenv("ARGO_TOKEN", "Bearer "+token)
_ = os.Setenv("ARGO_NAMESPACE", "argo")
Expand Down

0 comments on commit fce82bf

Please sign in to comment.