File tree Expand file tree Collapse file tree 13 files changed +1715
-62
lines changed
custom-package-url-heroku-20
custom-package-url-heroku-22
custom-repository-heroku-20
custom-repository-heroku-22 Expand file tree Collapse file tree 13 files changed +1715
-62
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : ["main"]
6
+ pull_request :
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ jobs :
12
+ functional-test :
13
+ runs-on : ubuntu-22.04
14
+ container :
15
+ image : heroku/heroku:${{ matrix.stack_number }}-build
16
+ strategy :
17
+ matrix :
18
+ stack_number : ["20", "22"]
19
+ env :
20
+ STACK : heroku-${{ matrix.stack_number }}
21
+ steps :
22
+ - name : Checkout
23
+ uses : actions/checkout@v4
24
+ - name : Functional tests on heroku:${{ matrix.stack_number }}-build
25
+ run : test/run
Original file line number Diff line number Diff line change 1
1
.anvil
2
+ .idea
Original file line number Diff line number Diff line change
1
+ test : heroku-22-build heroku-20-build
2
+
3
+ heroku-22-build :
4
+ @echo " Running tests in docker (heroku-22-build)..."
5
+ @docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=heroku-22" heroku/heroku:22-build bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
6
+ @echo " "
7
+
8
+ heroku-20-build :
9
+ @echo " Running tests in docker (heroku-20-build)..."
10
+ @docker run -v $(shell pwd) :/buildpack:ro --rm -it -e " STACK=heroku-20" heroku/heroku:20-build bash -c ' cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
11
+ @echo " "
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb
Original file line number Diff line number Diff line change
1
+ https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb
Original file line number Diff line number Diff line change
1
+ :repo:deb http://us.archive.ubuntu.com/ubuntu/ focal multiverse
2
+ fasttracker2
Original file line number Diff line number Diff line change
1
+ :repo:deb http://us.archive.ubuntu.com/ubuntu/ jammy multiverse
2
+ fasttracker2
Original file line number Diff line number Diff line change
1
+ # single package
2
+ xmlsec1
3
+
4
+ # globbed package
5
+ mysql-client-*
You can’t perform that action at this time.
0 commit comments