Skip to content

Commit 8949fdc

Browse files
committed
Use 8.2 as latest
Add 8.2 to test-quick Add test-8.2
1 parent c1b9e4b commit 8949fdc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ blueprint: ## Generate all blueprints file
44
@if ! type orbit >/dev/null 2>&1; then echo "Missing orbit dependency, please install from https://github.com/gulien/orbit/"; exit 1; fi
55
orbit run generate
66

7-
test-latest: test-8.1 ## Test the latest build only
7+
test-latest: test-8.2 ## Test the latest build only
88

99
_test-prerequisites: blueprint
1010
docker pull ubuntu:20.04
1111

12-
test-quick: ## Test 8.0 and 8.1 quickly
12+
test-quick: ## Test 8.0, 8.1 and 8.2 quickly
1313
VERSION=8.0 VARIANT=cli $(MAKE) _test-version-quick
1414
VERSION=8.1 VARIANT=cli $(MAKE) _test-version-quick
15+
VERSION=8.2 VARIANT=cli $(MAKE) _test-version-quick
16+
17+
test-8.2: ## Test php8.2 build only
18+
VERSION=8.2 VARIANT=cli $(MAKE) _test-version
19+
VERSION=8.2 VARIANT=apache $(MAKE) _test-version
20+
VERSION=8.2 VARIANT=fpm $(MAKE) _test-version
1521

1622
test-8.1: ## Test php8.1 build only
1723
VERSION=8.1 VARIANT=cli $(MAKE) _test-version

0 commit comments

Comments
 (0)