Skip to content

Commit

Permalink
fix deploy workflow (#1405)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Klein committed Feb 9, 2022
1 parent ae9a360 commit d2d067e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-acceptance-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
sudo mv -f chromedriver /usr/local/bin/chromedriver
wget https://selenium-release.storage.googleapis.com/3.14/selenium-server-standalone-3.14.0.jar
xvfb-run -a --server-args="-screen 0 1280x1024x24" java -jar ./selenium-server-standalone-3.14.0.jar &
- name: Setup Kubernetes Tools
- name: Setup Kubernetes
shell: bash
env:
KIND_CLUSTER_NAME: ${{ format('katc-{0}', github.run_id) }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ jobs:
xvfb-run -a --server-args="-screen 0 1280x1024x24" java -jar ./selenium-server-standalone-3.14.0.jar &
- name: Setup Kubernetes
uses: engineerd/setup-kind@v0.5.0
with:
name: "${{ format('katc-{0}', github.run_id) }}"
version: "v0.11.0"
image: kindest/node:v1.20.7
config: "./test/acceptance/test/configs/kind-config.yaml"
shell: bash
env:
KIND_CLUSTER_NAME: ${{ format('katc-{0}', github.run_id) }}
KIND_CLUSTER_IMAGE: kindest/node:v1.21.1
run: |
make local-kind-cluster-with-registry
- name: Kind-check
run: |
kubectl get pods -A
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
export WEGO_BIN_PATH=$(pwd)/bin/gitops
go get github.com/onsi/ginkgo/ginkgo
go get github.com/onsi/gomega
ginkgo --randomizeSuites --reportFile=${{ env. ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml -v ./test/acceptance/test/...
ACCEPTANCE_TEST_ARGS="--randomizeSuites --reportFile=${{ env. ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml" make acceptance-tests
- name: Store acceptance-tests results
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit d2d067e

Please sign in to comment.