Skip to content

Commit

Permalink
Fix github actions related to make
Browse files Browse the repository at this point in the history
  • Loading branch information
mhmxs committed Jul 7, 2022
1 parent 0a8c41b commit 67e309b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: e2e test
run: make go:e2e-tests:${{ inputs.provider }} KIND_CLUSTER_VERSION=${{ inputs.kubever }}
run: PATH=./bin:$PATH make go:e2e-tests:${{ inputs.provider }} KIND_CLUSTER_VERSION=${{ inputs.kubever }}

6 changes: 3 additions & 3 deletions .github/workflows/generator-test-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
TR_AWSKMS_CONFIG=${PWD}/tests/e2e/kuttl/kube-v1.24/awskms.yaml
TR_VAULT_CONFIG=${PWD}/tests/e2e/kuttl/kube-v1.24/vault.yaml
- name: generate services
run: make prod:generate:docker-compose ENV_LOCATION=trousseau-env
run: PATH=./bin:$PATH make prod:generate:docker-compose ENV_LOCATION=trousseau-env
kustomize:
name: kustomize
runs-on: ubuntu-latest
Expand All @@ -64,7 +64,7 @@ jobs:
TR_VAULT_CONFIG=${PWD}/tests/e2e/kuttl/kube-v1.24/vault.yaml
TR_VAULT_ADDRESS=http://127.0.0.1:8200
- name: generate services
run: make prod:generate:kustomize ENV_LOCATION=trousseau-env
run: PATH=./bin:$PATH make prod:generate:kustomize ENV_LOCATION=trousseau-env
helm:
name: helm
runs-on: ubuntu-latest
Expand All @@ -91,4 +91,4 @@ jobs:
TR_VAULT_CONFIG=${PWD}/tests/e2e/kuttl/kube-v1.24/vault.yaml
TR_VAULT_ADDRESS=http://127.0.0.1:8200
- name: generate services
run: make prod:generate:helm ENV_LOCATION=trousseau-env
run: PATH=./bin:$PATH make prod:generate:helm ENV_LOCATION=trousseau-env

0 comments on commit 67e309b

Please sign in to comment.