-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e3bf7d
commit db5499b
Showing
4 changed files
with
13 additions
and
3 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
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 |
---|---|---|
|
@@ -131,10 +131,15 @@ fi | |
echo "building runner" | ||
./scripts/build.sh | ||
|
||
# Set the CGO flags to use the portable version of BLST | ||
# | ||
# We use "export" here instead of just setting a bash variable because we need | ||
# to pass this flag to all child processes spawned by the shell. | ||
export CGO_CFLAGS="-O -D__BLST_PORTABLE__" | ||
|
||
echo "building e2e.test" | ||
# to install the ginkgo binary (required for test build and run) | ||
go install -v github.com/onsi/ginkgo/v2/[email protected] | ||
export CGO_CFLAGS="-O -D__BLST_PORTABLE__" | ||
ACK_GINKGO_RC=true ginkgo build ./tests/e2e | ||
./tests/e2e/e2e.test --help | ||
|
||
|