forked from kubernetes-sigs/cluster-api-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit ensures we clone e2e tests during testing instead of relying on the tests from vendor/.
- Loading branch information
1 parent
b5c07dd
commit e924cf2
Showing
2 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
GOPATH="$(mktemp -d)" | ||
export GOPATH | ||
|
||
ACTUATOR_PKG="github.com/openshift/cluster-api-actuator-pkg" | ||
|
||
go get -u -d "${ACTUATOR_PKG}/..." | ||
|
||
exec make --directory="${GOPATH}/src/${ACTUATOR_PKG}" test-e2e |