-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daniel Mikusa <[email protected]>
- Loading branch information
Showing
11 changed files
with
125 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.36.6 | ||
1.39.0 |
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 |
---|---|---|
|
@@ -25,21 +25,32 @@ jobs: | |
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.22" | ||
- name: Install create-package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- uses: buildpacks/github-actions/setup-tools@v5.5.3 | ||
- uses: buildpacks/github-actions/setup-tools@v5.6.0 | ||
with: | ||
crane-version: 0.19.0 | ||
crane-version: 0.19.1 | ||
yj-version: 5.1.0 | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.33.2 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
# this is coming from a copy of https://github.com/buildpacks/pack/actions/runs/8118576298 stored on box | ||
# TODO to revisit when the official one is out | ||
set -euo pipefail | ||
echo "Installing pack experimental" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl -L "https://ent.box.com/shared/static/j4d1bfe9uk1sb0i7zjvci0md9xmy41u4" -o ${HOME}/bin/pack | ||
chmod +x "${HOME}"/bin/pack | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|
@@ -106,21 +117,23 @@ jobs: | |
if [[ "${INCLUDE_DEPENDENCIES}" == "true" ]]; then | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--cache-location "${HOME}"/carton-cache \ | ||
--destination "${HOME}"/buildpack \ | ||
--include-dependencies \ | ||
--version "${VERSION}" | ||
else | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--destination "${HOME}"/buildpack \ | ||
--version "${VERSION}" | ||
fi | ||
PACKAGE_FILE=${SOURCE_PATH:-.}/package.toml | ||
[[ -e ${PACKAGE_FILE} ]] && cp ${PACKAGE_FILE} "${HOME}"/package.toml | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}"/buildpack "${OS}" >> "${HOME}"/package.toml | ||
PACKAGE_FILE="${SOURCE_PATH:-.}/package.toml" | ||
if [ -f "${PACKAGE_FILE}" ]; then | ||
cp "${PACKAGE_FILE}" "${HOME}/buildpack/package.toml" | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}/buildpack" "${OS}" >> "${HOME}/buildpack/package.toml" | ||
fi | ||
env: | ||
INCLUDE_DEPENDENCIES: "false" | ||
OS: linux | ||
|
@@ -133,15 +146,23 @@ jobs: | |
set -euo pipefail | ||
COMPILED_BUILDPACK="${HOME}/buildpack" | ||
# create-package puts the buildpack here, we need to run from that directory | ||
# for component buildpacks so that pack doesn't need a package.toml | ||
cd "${COMPILED_BUILDPACK}" | ||
CONFIG="" | ||
if [ -f "${COMPILED_BUILDPACK}/package.toml" ]; then | ||
CONFIG="--config ${COMPILED_BUILDPACK}/package.toml" | ||
fi | ||
PACKAGE_LIST=($PACKAGES) | ||
# Extract first repo (Docker Hub) as the main to package & register | ||
PACKAGE=${PACKAGE_LIST[0]} | ||
if [[ "${PUBLISH:-x}" == "true" ]]; then | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--publish | ||
if [[ -n ${VERSION_MINOR:-} && -n ${VERSION_MAJOR:-} ]]; then | ||
|
@@ -165,10 +186,9 @@ jobs: | |
done | ||
else | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--format "${FORMAT}" | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish") | ||
fi | ||
env: | ||
PACKAGES: docker.io/paketobuildpacks/elastic-apm gcr.io/paketo-buildpacks/elastic-apm | ||
|
@@ -199,7 +219,7 @@ jobs: | |
DIGEST: ${{ steps.package.outputs.digest }} | ||
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
- if: ${{ true }} | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.0.1 | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.6.0 | ||
with: | ||
address: docker.io/paketobuildpacks/elastic-apm@${{ steps.package.outputs.digest }} | ||
id: paketo-buildpacks/elastic-apm | ||
|
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 |
---|---|---|
|
@@ -17,17 +17,28 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.22" | ||
- name: Install create-package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.33.2 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
# this is coming from a copy of https://github.com/buildpacks/pack/actions/runs/8118576298 stored on box | ||
# TODO to revisit when the official one is out | ||
set -euo pipefail | ||
echo "Installing pack experimental" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl -L "https://ent.box.com/shared/static/j4d1bfe9uk1sb0i7zjvci0md9xmy41u4" -o ${HOME}/bin/pack | ||
chmod +x "${HOME}"/bin/pack | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|
@@ -93,21 +104,23 @@ jobs: | |
if [[ "${INCLUDE_DEPENDENCIES}" == "true" ]]; then | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--cache-location "${HOME}"/carton-cache \ | ||
--destination "${HOME}"/buildpack \ | ||
--include-dependencies \ | ||
--version "${VERSION}" | ||
else | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--destination "${HOME}"/buildpack \ | ||
--version "${VERSION}" | ||
fi | ||
PACKAGE_FILE=${SOURCE_PATH:-.}/package.toml | ||
[[ -e ${PACKAGE_FILE} ]] && cp ${PACKAGE_FILE} "${HOME}"/package.toml | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}"/buildpack "${OS}" >> "${HOME}"/package.toml | ||
PACKAGE_FILE="${SOURCE_PATH:-.}/package.toml" | ||
if [ -f "${PACKAGE_FILE}" ]; then | ||
cp "${PACKAGE_FILE}" "${HOME}/buildpack/package.toml" | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}/buildpack" "${OS}" >> "${HOME}/buildpack/package.toml" | ||
fi | ||
env: | ||
INCLUDE_DEPENDENCIES: "true" | ||
OS: linux | ||
|
@@ -118,15 +131,23 @@ jobs: | |
set -euo pipefail | ||
COMPILED_BUILDPACK="${HOME}/buildpack" | ||
# create-package puts the buildpack here, we need to run from that directory | ||
# for component buildpacks so that pack doesn't need a package.toml | ||
cd "${COMPILED_BUILDPACK}" | ||
CONFIG="" | ||
if [ -f "${COMPILED_BUILDPACK}/package.toml" ]; then | ||
CONFIG="--config ${COMPILED_BUILDPACK}/package.toml" | ||
fi | ||
PACKAGE_LIST=($PACKAGES) | ||
# Extract first repo (Docker Hub) as the main to package & register | ||
PACKAGE=${PACKAGE_LIST[0]} | ||
if [[ "${PUBLISH:-x}" == "true" ]]; then | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--publish | ||
if [[ -n ${VERSION_MINOR:-} && -n ${VERSION_MAJOR:-} ]]; then | ||
|
@@ -150,14 +171,14 @@ jobs: | |
done | ||
else | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--format "${FORMAT}" | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish") | ||
fi | ||
env: | ||
FORMAT: image | ||
PACKAGES: test | ||
TTL_SH_PUBLISH: "false" | ||
VERSION: ${{ steps.version.outputs.version }} | ||
unit: | ||
name: Unit Test | ||
|
@@ -172,7 +193,7 @@ jobs: | |
restore-keys: ${{ runner.os }}-go- | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.22" | ||
- name: Install richgo | ||
run: | | ||
#!/usr/bin/env bash | ||
|
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2018-2022 the original author or authors. | ||
# Copyright 2018-2024 the original author or authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -28,18 +28,18 @@ api = "0.7" | |
uri = "https://github.com/paketo-buildpacks/elastic-apm/blob/main/LICENSE" | ||
|
||
[metadata] | ||
include-files = ["LICENSE", "NOTICE", "README.md", "bin/build", "bin/detect", "bin/helper", "bin/main", "buildpack.toml"] | ||
include-files = ["LICENSE", "NOTICE", "README.md", "linux/amd64/bin/build", "linux/amd64/bin/detect", "linux/amd64/bin/main", "linux/amd64/bin/helper", "linux/arm64/bin/build", "linux/arm64/bin/detect", "linux/arm64/bin/main", "linux/arm64/bin/helper", "buildpack.toml"] | ||
pre-package = "scripts/build.sh" | ||
|
||
[[metadata.dependencies]] | ||
cpes = ["cpe:2.3:a:elastic-apm:java-agent:1.49.0:*:*:*:*:*:*:*"] | ||
id = "elastic-apm-java" | ||
name = "Elastic APM Java Agent" | ||
purl = "pkg:generic/[email protected]?arch=amd64" | ||
purl = "pkg:generic/[email protected]" | ||
sha256 = "36a020f2584f3c5aabfda3f29e479380a0409bad8bbf0a39f444bf5c5836aaaf" | ||
source = "https://repo1.maven.org/maven2/co/elastic/apm/elastic-apm-agent/1.49.0/elastic-apm-agent-1.49.0-sources.jar" | ||
source-sha256 = "e49849243c593f9f3dbd28774a9d2cbdae6443cb97e44b0113075628516afbe0" | ||
stacks = ["io.buildpacks.stacks.bionic", "io.paketo.stacks.tiny", "*"] | ||
stacks = ["*"] | ||
uri = "https://repo1.maven.org/maven2/co/elastic/apm/elastic-apm-agent/1.49.0/elastic-apm-agent-1.49.0.jar" | ||
version = "1.49.0" | ||
|
||
|
@@ -55,7 +55,7 @@ api = "0.7" | |
sha256 = "a2f84f82b41e5f486d5a6810caf257b7a53bcdf1d5b748989ec39e6e21685d3d" | ||
source = "https://registry.npmjs.org/elastic-apm-node/-/elastic-apm-node-4.5.3.tgz" | ||
source-sha256 = "a2f84f82b41e5f486d5a6810caf257b7a53bcdf1d5b748989ec39e6e21685d3d" | ||
stacks = ["io.buildpacks.stacks.bionic", "io.paketo.stacks.tiny", "*"] | ||
stacks = ["*"] | ||
uri = "https://registry.npmjs.org/elastic-apm-node/-/elastic-apm-node-4.5.3.tgz" | ||
version = "4.5.3" | ||
|
||
|
@@ -64,10 +64,12 @@ api = "0.7" | |
uri = "https://github.com/elastic/apm-agent-nodejs/blob/master/LICENSE" | ||
|
||
[[stacks]] | ||
id = "io.buildpacks.stacks.bionic" | ||
id = "*" | ||
|
||
[[stacks]] | ||
id = "io.paketo.stacks.tiny" | ||
[[targets]] | ||
arch = "amd64" | ||
os = "linux" | ||
|
||
[[stacks]] | ||
id = "*" | ||
[[targets]] | ||
arch = "arm64" | ||
os = "linux" |
Oops, something went wrong.