-
Notifications
You must be signed in to change notification settings - Fork 21
133 lines (133 loc) · 10.1 KB
/
ci.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
################################################################################
# Copyright (C) 2020 Sebastian Francisco Colomar Bauza #
# SPDX-License-Identifier: GPL-2.0-only #
################################################################################
name: CI #
on: #
push: #
branches: #
- main #
jobs: #
host: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: run #
run: php -f phpinfo/index.php -S 0.0.0.0:9000 &
- name: test #
run: |
while true ;
do \
sleep 10 ;
wget -q -O - localhost:9000/src/index.php | grep "PHP.*phpinfo()" && break ;
done ;
docker: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-build #
run: |
mkdir --parents build-context/
docker build --file phpinfo/Dockerfile --tag localhost/library/my_image:test build-context/
- name: docker-run
run: docker run --cpus 0.01 --detach --memory 20M --memory-reservation 10M --name phpinfo --publish 60000:9000 --read-only --restart always --user nobody:nogroup --volume ${PWD}/phpinfo/index.php:/src/index.php:ro --workdir /src/ localhost/library/my_image:test php -f index.php -S 0.0.0.0:9000
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker logs phpinfo 2>& 1 | grep "PHP.*started" && break ;
done ;
docker-compose: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-compose
run: docker-compose up --detach
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker-compose logs 2>& 1 | grep "PHP.*started" && break ;
done
swarm-config: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: docker stack deploy --compose-file docker-stack-config.yaml phpinfo
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker service logs phpinfo_phpinfo 2>& 1 | grep "PHP.*started" && break ;
done
swarm-secret: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: docker stack deploy --compose-file docker-stack-secret.yaml phpinfo
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker service logs phpinfo_phpinfo 2>& 1 | grep "PHP.*started" && break ;
done
swarm-volume: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: docker stack deploy --compose-file docker-stack-volume.yaml phpinfo
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker service logs phpinfo_phpinfo 2>& 1 | grep "PHP.*started" && break ;
done
kubernetes: #
runs-on: ubuntu-18.04 #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: init #
run: |
uuid=$( md5sum /etc/hosts | cut -d\ -f1 ) ;
git clone --single-branch -b v1.2 \
https://github.com/academiaonline/kubernetes $uuid ;
path=$uuid/bin/cluster/ubuntu18/install-docker-kubelet.sh ;
source $path ;
path=$uuid/bin/cluster/ubuntu18/install-leader.sh ;
source $path ;
master=$( kubectl get node | grep master | awk '{ print $1 }' ) ;
kubectl taint node $master node-role.kubernetes.io/master:NoSchedule- ;
rm -rf $uuid ;
- name: apply #
run: kubectl apply -f kubernetes/manifests/ ;
- name: test #
run: |
set -x ;
while true ;
do \
sleep 10 ;
kubectl exec phpinfo-po -- wget -q -O - localhost:8080 | grep "PHP.*phpinfo()" && break
done ;
kubectl get all
################################################################################