-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
38 lines (28 loc) · 1.11 KB
/
Makefile
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
32
33
34
35
36
37
38
#!make
# @todo use it like this https://github.com/jenkinsci/docker-ssh-agent/blob/5.23.0/Makefile
# https://github.com/jenkinsci/docker-ssh-agent/blob/5.23.0/README.md
# https://github.com/jenkinsci/docker-agent/blob/master/Makefile
build:
./build_all.sh
deploy:
./build_deploy_all.sh
build-deploy:
make build deploy
stop-all-containers:
ids=$$(docker ps -a -q) && if [ "$${ids}" != "" ]; then docker stop $${ids}; fi
test:
make test-7
make test-8
make test-9
make test-10
make test-11
test-7:
docker run --name drupalcitest --rm marcelovani/drupalci:7-apache --project adstxt --version ^1.0.0
test-8:
docker run --name drupalcitest --rm marcelovani/drupalci:8-apache --project adstxt --version ^1.0.0 --patches https://www.drupal.org/files/issues/2020-02-04/3110931-2.patch
test-9:
docker run --name drupalcitest --rm marcelovani/drupalci:9-apache --project adstxt --version ^1.0.0
test-10:
docker run --name drupalcitest --rm marcelovani/drupalci:10-apache --project acquia_vwo --version ^1.0.0
test-11:
docker run --name drupalcitest --rm marcelovani/drupalci:11-apache --project acquia_vwo --version ^1.0.0