-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (26 loc) · 839 Bytes
/
Makefile
File metadata and controls
31 lines (26 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.PHONY: test
test:
cd cakephp && vendor/bin/phpunit
.PHONY: clean
clean:
rm -rf cakephp
.PHONY: 3.3
3.3:
git clone -b 3.3.15 --depth 1 --single-branch https://github.com/cakephp/cakephp
patch -d cakephp -p1 < 3.3/10353.patch
composer install -d cakephp
.PHONY: 3.2
3.2:
git clone -b 3.2.14 --depth 1 --single-branch https://github.com/cakephp/cakephp
patch -d cakephp -p1 < 3.2/10353.patch
composer require -d cakephp "phpunit/phpunit:5.5.*"
.PHONY: 3.1
3.1:
git clone -b 3.1.14 --depth 1 --single-branch https://github.com/cakephp/cakephp
patch -d cakephp -p1 < 3.1/10353.patch
composer require -d cakephp "phpunit/phpunit:4.8.*"
.PHONY: 3.0
3.0:
git clone -b 3.0.19 --depth 1 --single-branch https://github.com/cakephp/cakephp
patch -d cakephp -p1 < 3.0/10353.patch
composer require -d cakephp "phpunit/phpunit:4.8.*"