Skip to content

Commit 868c8c7

Browse files
authored
Update offline tests and remove bionic builder from integration.json (#732)
* Remove bionic and non-paketo builder from integration.json * Add noble builder to integration.json * Remove conditional logic for offline tests since non-paketo builder was removed * Update .gitignore with paths for multi-arch builds
1 parent ca51ee9 commit 868c8c7

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
pip-cnb.tgz
55
pip-cnb_*
66
/build
7+
/linux
8+
/darwin
9+
/windows

integration.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"builders": [
3-
"index.docker.io/paketobuildpacks/builder:buildpackless-base",
43
"index.docker.io/paketobuildpacks/builder-jammy-buildpackless-base:latest",
5-
"index.docker.io/jericop/amazonlinux-builder:base"
4+
"index.docker.io/paketobuildpacks/ubuntu-noble-builder-buildpackless:latest"
65
],
76
"cpython":"index.docker.io/paketobuildpacks/cpython",
87
"build-plan":"index.docker.io/paketocommunity/build-plan"

integration/init_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"encoding/json"
55
"os"
66
"path/filepath"
7-
"strings"
87
"testing"
98
"time"
109

@@ -112,8 +111,6 @@ func TestIntegration(t *testing.T) {
112111
suite := spec.New("Integration", spec.Report(report.Terminal{}))
113112
suite("Default", testDefault, spec.Parallel())
114113
suite("LayerReuse", testLayerReuse, spec.Parallel())
115-
if strings.Contains(builder.LocalInfo.Stack.ID, "jammy") || strings.Contains(builder.LocalInfo.Stack.ID, "bionic") {
116-
suite("Offline", testOffline, spec.Parallel())
117-
}
114+
suite("Offline", testOffline, spec.Parallel())
118115
suite.Run(t)
119116
}

0 commit comments

Comments
 (0)