We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a3fca commit 0edced8Copy full SHA for 0edced8
2 files changed
scripts/integration.sh
@@ -7,6 +7,7 @@ source .envrc
7
8
GINKGO_NODES=${GINKGO_NODES:-3}
9
GINKGO_ATTEMPTS=${GINKGO_ATTEMPTS:-2}
10
+export CF_STACK=${CF_STACK:-cflinuxfs2}
11
12
cd src/*/integration
13
src/python/integration/integration_suite_test.go
@@ -34,7 +34,7 @@ func init() {
34
var _ = SynchronizedBeforeSuite(func() []byte {
35
// Run once
36
if buildpackVersion == "" {
37
- packagedBuildpack, err := cutlass.PackageUniquelyVersionedBuildpack("cflinuxfs2")
+ packagedBuildpack, err := cutlass.PackageUniquelyVersionedBuildpack(os.Getenv("CF_STACK"))
38
Expect(err).NotTo(HaveOccurred())
39
40
data, err := json.Marshal(packagedBuildpack)
0 commit comments