Merge pull request #178 from dabradley/development #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--- | |
#name: External E2E Test | |
#on: | |
#workflow_dispatch: | |
#jobs: | |
#Run-external-e2e-test: | |
#name: Run External E2E Test | |
#runs-on: ubuntu-latest | |
#container: ubuntu:18.04 | |
#steps: | |
#- name: Check out code into the Go module directory | |
#uses: actions/checkout@v4 | |
#- name: Set up Go 1.x | |
##uses: actions/setup-go@v5 | |
#with: | |
#go-version-file: 'go.mod' | |
#id: go | |
#- name: Install CA and curl | |
#run: | | |
#apt update -y | |
#apt install -y --no-install-recommends curl ca-certificates | |
#update-ca-certificates | |
#- name: Install ginkgo | |
#run: go install github.com/onsi/ginkgo/v2/ginkgo@latest | |
#- name: Set up kubectl | |
#run: | | |
#curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/\ | |
#release/stable.txt)/bin/linux/amd64/kubectl" -o kubectl | |
#chmod +x kubectl | |
#cp ./kubectl /usr/bin/ | |
#mkdir ~/.kube | |
#echo ${{ secrets.KUBE_CONFIG }} | base64 > ~/.kube/config | |
#- name: Run External E2E Test | |
#run: test/external-e2e/run.sh |