Skip to content

Commit

Permalink
Merge pull request #892 from ArangoGutierrez/go_on_runner
Browse files Browse the repository at this point in the history
[no-relnote] Install Go before E2E at staging E2E
  • Loading branch information
ArangoGutierrez authored Aug 9, 2024
2 parents 3d26fb0 + 624328a commit 650a3af
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/staging_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
id: vars
run: |
echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
GOLANG_VERSION=$(./hack/golang-version.sh)
echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV
echo "HOLODECK_VCENTER_USERNAME=${HOLODECK_VCENTER_USERNAME}" >> $GITHUB_ENV
echo "HOLODECK_VCENTER_PASSWORD=${HOLODECK_VCENTER_PASSWORD}" >> $GITHUB_ENV
cat /home/runner/.ssh/vsphere-key > ${GITHUB_WORKSPACE}/holodeck_ssh_key
Expand All @@ -45,6 +47,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y make
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Run e2e tests
env:
KUBECONFIG: ${{ github.workspace }}/kubeconfig
Expand Down

0 comments on commit 650a3af

Please sign in to comment.