Skip to content

Commit

Permalink
Add a second run for showing the cache output
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Dec 12, 2024
1 parent 7bb9334 commit 0b81b32
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,24 +134,32 @@ jobs:
run: cargo libcnb package --target ${{ matrix.target }}
- name: "PRINT: Getting started guide output"
run: |
set -euo pipefail
if [ "${{ matrix.guide }}" == "heroku/java-getting-started" ]; then
pack build my-image --force-color --builder heroku/builder:24 --trust-extra-buildpacks --path tmp/guide --pull-policy never \
--buildpack packaged/${{ matrix.target }}/debug/heroku_jvm \
PACK_CMD="--buildpack packaged/${{ matrix.target }}/debug/heroku_jvm \
--buildpack packaged/${{ matrix.target }}/debug/heroku_java \
--buildpack packaged/${{ matrix.target }}/debug/heroku_maven \
"
elif [ "${{ matrix.guide }}" == "heroku/gradle-getting-started" ]; then
pack build my-image --force-color --builder heroku/builder:24 --trust-extra-buildpacks --path tmp/guide --pull-policy never \
PACK_CMD="pack build my-image --force-color --builder heroku/builder:24 --trust-extra-buildpacks --path tmp/guide --pull-policy never \
--buildpack packaged/${{ matrix.target }}/debug/heroku_jvm \
--buildpack packaged/${{ matrix.target }}/debug/heroku_gradle \
"
elif [ "${{ matrix.guide }}" == "heroku/scala-getting-started" ]; then
pack build my-image --force-color --builder heroku/builder:24 --trust-extra-buildpacks --path tmp/guide --pull-policy never \
PACK_CMD="pack build my-image --force-color --builder heroku/builder:24 --trust-extra-buildpacks --path tmp/guide --pull-policy never \
--buildpack packaged/${{ matrix.target }}/debug/heroku_jvm \
--buildpack packaged/${{ matrix.target }}/debug/heroku_sbt \
--buildpack packaged/${{ matrix.target }}/debug/heroku_scala \
"
else
echo "Unknown guide: ${{ matrix.guide }}"
exit 1
fi
bash -c "$PACK_CMD"
echo ""
echo "With CACHE example"
echo ""
bash -c "$PACK_CMD"

0 comments on commit 0b81b32

Please sign in to comment.