Skip to content

Commit

Permalink
Add ginkgo "compilers=1" flag in attempt to fix go mod download issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Joyce committed Dec 7, 2018
1 parent c8145c2 commit 513f145
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/brats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export CF_STACK=${CF_STACK:-cflinuxfs2}
cd src/*/brats

echo "Run Buildpack Runtime Acceptance Tests"
ginkgo -r --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES
ginkgo -r --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES -compilers=1
4 changes: 2 additions & 2 deletions scripts/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ cd src/*/integration

echo "Run Uncached Buildpack"
BUILDPACK_FILE="$UNCACHED_BUILDPACK_FILE" \
ginkgo -r --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES --slowSpecThreshold=60 -- --cached=false
ginkgo -r -compilers=1 --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES --slowSpecThreshold=60 -- --cached=false

echo "Run Cached Buildpack"
BUILDPACK_FILE="$CACHED_BUILDPACK_FILE" \
ginkgo -r --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES --slowSpecThreshold=60 -- --cached
ginkgo -r -compilers=1 --flakeAttempts=$GINKGO_ATTEMPTS -nodes $GINKGO_NODES --slowSpecThreshold=60 -- --cached
2 changes: 1 addition & 1 deletion scripts/unit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ source .envrc
./scripts/install_tools.sh

cd src/*/integration/..
ginkgo -r -skipPackage=brats,integration
ginkgo -r -skipPackage=brats,integration -compilers=1

0 comments on commit 513f145

Please sign in to comment.