Skip to content

Commit 763b2ba

Browse files
committed
test: add scalingo-24
1 parent 2626689 commit 763b2ba

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ BASH_COMMAND := /bin/bash
44
.DEFAULT := all
55

66
all: test
7-
test: test20 test22
7+
test: test20 test22 test24
88

99
test20: STACK := "scalingo-20"
1010

11-
test20 test22: BASH_COMMAND := test/run
12-
test20 test22: IMAGE := "scalingo/$(STACK):latest"
13-
test20 test22:
11+
test24: STACK := "scalingo-24"
12+
13+
test20 test22 test24: BASH_COMMAND := test/run
14+
test20 test22 test24: IMAGE := "scalingo/$(STACK):latest"
15+
test20 test22 test24:
1416
@echo "Running tests in Docker using $(IMAGE)"
1517
@docker run --pull always --mount type=bind,src=$(PWD),dst=/buildpack,readonly --workdir /buildpack --rm --interactive --tty --env "GITLAB_TOKEN=$(GITLAB_TOKEN)" --env "GITHUB_TOKEN=$(GITHUB_TOKEN)" --env "STACK=$(STACK)" $(IMAGE) bash -c "$(BASH_COMMAND)"

test/defaults

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ default_nginx["scalingo-22"]="1.28."
1717
default_composer["scalingo-22"]="2.8."
1818
latest_composer["scalingo-22"]="2.8.11"
1919

20+
# Defaults for scalingo-24:
21+
default_php["scalingo-24"]="8.1."
22+
default_nginx["scalingo-24"]="1.28."
23+
default_composer["scalingo-24"]="2.8."
24+
latest_composer["scalingo-24"]="2.8.11"
25+
2026

2127
test::defaults::classic() {
2228
#

0 commit comments

Comments
 (0)