Skip to content

Commit

Permalink
Bump pack version in CI (#793)
Browse files Browse the repository at this point in the history
* Bump pack version in CI

Update to pack 0.36.0

Signed-off-by: Aidan Delaney <[email protected]>

* Update tools to latest pack

Do not require an older dependency

Signed-off-by: Aidan Delaney <[email protected]>

---------

Signed-off-by: Aidan Delaney <[email protected]>
  • Loading branch information
AidanDelaney authored Dec 12, 2024
1 parent 02f1cbf commit 4d81080
Show file tree
Hide file tree
Showing 8 changed files with 309 additions and 320 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install pack
uses: buildpacks/github-actions/[email protected]
with:
pack-version: '0.31.0'
pack-version: '0.36.0'
- name: Test
run: make test
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pack buildpack new examples/node-js \
--api 0.10 \
--path node-js-buildpack \
--version 0.0.1 \
--stacks io.buildpacks.samples.stacks.noble
--targets "linux/amd64"
```
<!--+- "{{execute}}"+-->
This command will create `node-js-buildpack` directory which contains `buildpack.toml`, `bin/build`, `bin/detect` files.
Expand All @@ -34,7 +34,6 @@ This command will create `node-js-buildpack` directory which contains `buildpack
- `-a, --api` Buildpack API compatibility of the generated buildpack
- `-h, --help` Help for 'new'
- `--path` the location on the filesystem to generate the artifacts
- `--stacks` Stacks (deprecated) the buildpack will work with
- `-V, --version` the version of the buildpack in buildpack.toml


Expand All @@ -55,11 +54,7 @@ api = "0.10"
# Targets the buildpack will work with
[[targets]]
os = "linux"

# Stacks (deprecated) the buildpack will work with
[[stacks]]
id = "io.buildpacks.samples.stacks.noble"

architecture = "amd64"
```

The buildpack ID is the way you will reference the buildpack when you create buildpack groups, builders, etc.
Expand Down Expand Up @@ -130,9 +125,9 @@ After running the command, you should see that it failed to detect, as the `dete
```
===> DETECTING
...
err: examples/[email protected] (1)
ERROR: No buildpack groups passed detection.
ERROR: failed to detect: buildpack(s) failed with err
[detector] err: examples/[email protected] (1)
[detector] ERROR: No buildpack groups passed detection.
[detector] ERROR: failed to detect: buildpack(s) failed with err
ERROR: failed to build: executing lifecycle: failed with status code: 21
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ You will see the following output:
...
===> RESTORING
===> BUILDING
---> NodeJS Buildpack
---> Downloading and extracting NodeJS
[builder] ---> NodeJS Buildpack
[builder] ---> Downloading and extracting NodeJS
...
===> EXPORTING
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ you will see the new caching logic at work during the `BUILDING` phase:
```text
===> BUILDING
...
---> NodeJS Buildpack
-----> Reusing NodeJS
[builder] ---> NodeJS Buildpack
[builder] -----> Reusing NodeJS
```

Next, let's see how buildpack users may be able to provide configuration to the buildpack.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ You will notice that version of NodeJS specified in the app's `.node-js-version`
```text
===> BUILDING
...
---> NodeJS Buildpack
-----> Downloading and extracting NodeJS 18.18.1
[builder] ---> NodeJS Buildpack
[builder] -----> Downloading and extracting NodeJS 18.18.1
```

## Going further
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Create the builder:
```bash
pack builder create localhost:5000/extensions-builder \
--config $PWD/samples/builders/alpine/builder.toml \
--target "linux/amd64" \
--publish
```

Expand Down
186 changes: 93 additions & 93 deletions tools/go.mod

Large diffs are not rendered by default.

413 changes: 203 additions & 210 deletions tools/go.sum

Large diffs are not rendered by default.

0 comments on commit 4d81080

Please sign in to comment.