File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 44
55jobs :
66 test :
7+ strategy :
8+ matrix :
9+ stack : [heroku-20, heroku-22, heroku-24]
710 runs-on : ubuntu-latest
811
912 steps :
1316 run : |
1417 ./bin/compile . . .
1518 env :
16- STACK : heroku-22
19+ STACK : ${{ matrix.stack }}
1720
1821 - name : Check Installation
1922 run : |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ topic "Installing Chrome dependencies"
1515
1616# Install correct dependencies according to $STACK
1717case " ${STACK} " in
18- " heroku-18 " | " heroku-20 " | " heroku-22 " )
18+ " heroku-20 " | " heroku-22 " | " heroku-24 " )
1919 # the package list is found by using ci:debug then running ldd $GOOGLE_CHROME_BIN | grep not
2020 # also look here for more packages/notes https://developers.google.com/web/tools/puppeteer/troubleshooting
2121 PACKAGES="
@@ -47,7 +47,7 @@ case "${STACK}" in
4747 "
4848 ;;
4949 * )
50- error " STACK must be 'heroku-18 ', 'heroku-20 ' or 'heroku-22 ', not '${STACK} '."
50+ error " STACK must be 'heroku-20 ', 'heroku-22 ' or 'heroku-24 ', not '${STACK} '."
5151esac
5252
5353if [ ! -f $CACHE_DIR /PURGED_CACHE_V1 ]; then
@@ -58,7 +58,7 @@ if [ ! -f $CACHE_DIR/PURGED_CACHE_V1 ]; then
5858 touch $CACHE_DIR /PURGED_CACHE_V1
5959fi
6060
61- # This is where the original buildpack installed Chrome itself,
61+ # This is where the original buildpack installed Chrome itself,
6262# but Chrome for Testing is installed from direct downloads.
6363#
6464# echo "Installing Google Chrome from the $channel channel." | indent
You can’t perform that action at this time.
0 commit comments