-
Notifications
You must be signed in to change notification settings - Fork 96
159 lines (159 loc) · 11.3 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
################################################################################
# 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-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: os-release
run: cat /etc/os-release
- name: run #
run: php -f main/src/index.php -S 0.0.0.0:8080 &
- name: which
run: which wget && which curl
- name: cat
run: cat main/src/index.php
- name: test #
run: |
while true ;
do \
sleep 10 ;
wget -q -O - localhost:8080/main/src/index.php | grep "PHP.*phpinfo()" && break ;
done ;
docker: #
runs-on: ubuntu-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-build #
run: |
mkdir --parents build-context/
docker build --file main/Dockerfile --tag localhost/library/my_image:test build-context/
- name: docker-run
run: docker run --cpus 0.01 --detach --memory 10M --memory-reservation 10M --name phpinfo --publish 80:8080 --read-only --restart always --user nobody:nogroup --volume ${PWD}/main/src/index.php:/src/index.php:ro --workdir /src/ localhost/library/my_image:test php -f index.php -S 0.0.0.0:8080
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker logs phpinfo 2>& 1 | grep "PHP.*started" && break ;
done ;
docker-compose: #
runs-on: ubuntu-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: install
run: sudo apt-get update && sudo apt-get install -y docker-compose
- name: docker-compose
run: docker-compose --file main/docker-compose.yaml up &
- name: test #
run: |
while true ;
do \
sleep 10 ;
docker-compose --file main/docker-compose.yaml logs 2>& 1 | grep "PHP.*started" && break ;
done
swarm-config: #
runs-on: ubuntu-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: cd main && 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-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: cd main && 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-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: docker-swarm #
run: docker swarm init
- name: docker-stack
run: cd main && 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
kube-compose-deploy-cm-alpine: #
runs-on: ubuntu-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: minikube
run: |
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
sudo apt-get install ./minikube_latest_amd64.deb
- name: init
run: minikube start --driver=docker
- name: kubectl
run: kubectl version
- name: apply #
run: kubectl apply -f main/kubernetes/kube-compose-deploy-cm-alpine.yaml ;
- name: test #
run: |
set -x ;
while true ;
do \
sleep 10 ;
kubectl logs deploy/phpinfo-deploy 2>& 1 | grep "PHP.*started" && break ;
done ;
kube-compose-deploy-echo: #
runs-on: ubuntu-latest #
steps: #
- name: checkout #
uses: actions/checkout@v2 #
- name: minikube
run: |
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
sudo apt-get install ./minikube_latest_amd64.deb
- name: init
run: minikube start --driver=docker
- name: kubectl
run: kubectl version
- name: apply #
run: kubectl apply -f main/kubernetes/kube-compose-deploy-echo.yaml ;
- name: test #
run: |
set -x ;
while true ;
do \
sleep 10 ;
kubectl logs deploy/phpinfo-deploy-echo 2>& 1 | grep "PHP.*started" && break ;
done ;
################################################################################