File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ blueprint : # # Generate all blueprints file
2
+ @if ! type orbit > /dev/null 2>&1 ; then echo " Missing orbit dependency, please install from https://github.com/gulien/orbit/" ; exit 1; fi
3
+ orbit run generate
4
+ @sed -i ' 1i\# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)' Dockerfile.*
5
+ @sed -i ' 1i\[DO NOT EDIT THIS FILE]: <> (Make yours changes in /utils/README.blueprint.md)' README.md
6
+
7
+ test-latest : test-php8.0 # # Test the latest build only
8
+
9
+ test-php8.1 : blueprint # # Test php8.1 build only
10
+ PHP_VERSION=8.1 BRANCH=v4 VARIANT=apache ./build-and-test.sh || (notify-send -u critical " Tests failed" && exit 1)
11
+ PHP_VERSION=8.1 BRANCH=v4 VARIANT=cli ./build-and-test.sh || (notify-send -u critical " Tests failed" && exit 1)
12
+ notify-send -u critical " Tests passed with success"
13
+
14
+ test-php8.0 : blueprint # # Test php8.0 build only
15
+ PHP_VERSION=8.0 BRANCH=v4 VARIANT=apache ./build-and-test.sh || (notify-send -u critical " Tests failed" && exit 1)
16
+ PHP_VERSION=8.0 BRANCH=v4 VARIANT=cli ./build-and-test.sh || (notify-send -u critical " Tests failed" && exit 1)
17
+ notify-send -u critical " Tests passed with success"
18
+
19
+ clean : # # Clean dangles image after build
You can’t perform that action at this time.
0 commit comments