-
Notifications
You must be signed in to change notification settings - Fork 3
222 lines (179 loc) · 7.45 KB
/
ci.yml
File metadata and controls
222 lines (179 loc) · 7.45 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
name: CI
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
jobs:
supported-version:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.supported-version.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v5.1.0
id: supported-version
supported-version-latest:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.supported-version.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v5.1.0
id: supported-version
with:
kind: latest
# Test with existing Magento project (user has PHP/Composer locally)
test-existing-project:
needs: supported-version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.supported-version.outputs.matrix) }}
name: Existing Project ${{ matrix.magento }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Install devcontainer CLI
run: npm install -g @devcontainers/cli
- name: Create Magento project
run: |
composer create-project --no-install \
--repository-url=https://mirror.mage-os.org/ \
"${{ matrix.magento }}" test-project
- name: Checkout devcontainer
uses: actions/checkout@v6
with:
path: test-project/.devcontainer/magento2-devcontainer
- name: Initialize devcontainer configuration
working-directory: test-project
run: |
# Run init.sh - it will auto-detect the Magento version from composer.json
# Just need to provide the devcontainer name (empty = default)
printf '\n' | .devcontainer/magento2-devcontainer/bin/init.sh
# Show the generated config
echo "=== devcontainer.json ==="
cat .devcontainer/devcontainer.json
- name: Build and start devcontainer
working-directory: test-project
run: |
devcontainer up --workspace-folder .
- name: Verify services are running
working-directory: test-project
run: |
echo "Waiting for OpenSearch to be ready..."
timeout 120 bash -c 'until curl -s http://localhost:9200/_cluster/health | grep -q "status"; do sleep 5; done'
echo "OpenSearch is ready"
echo "=== Checking PHP ==="
devcontainer exec --workspace-folder . php -v
echo "=== Checking database ==="
devcontainer exec --workspace-folder . \
bash -c 'mysql -h db -umagento -pmagento -e "SELECT 1" magento'
echo "=== Checking OpenSearch ==="
devcontainer exec --workspace-folder . \
bash -c 'curl -s http://opensearch:9200/_cluster/health'
echo "=== Checking RabbitMQ ==="
devcontainer exec --workspace-folder . \
bash -c 'curl -s -u magento:magento http://rabbitmq:15672/api/overview | head -c 200'
echo ""
echo "=== Checking Redis ==="
devcontainer exec --workspace-folder . \
bash -c 'redis-cli -h redis ping'
- name: Install Magento dependencies
working-directory: test-project
run: |
devcontainer exec --workspace-folder . composer install
- name: Run setup-install.sh
working-directory: test-project
run: |
echo "=== Generated setup:install command ==="
devcontainer exec --workspace-folder . \
bash -c '.devcontainer/magento2-devcontainer/bin/setup-install.sh'
echo ""
echo "=== Running Magento setup:install ==="
devcontainer exec --workspace-folder . \
bash -c '.devcontainer/magento2-devcontainer/bin/setup-install.sh | bash'
- name: Verify Magento installation
working-directory: test-project
run: |
echo "=== Checking Magento version ==="
devcontainer exec --workspace-folder . bin/magento --version
echo "=== Checking Magento status ==="
devcontainer exec --workspace-folder . bin/magento setup:db:status
- name: Show container status
if: always()
working-directory: test-project
run: |
docker ps -a
# Test fresh install (user only has Docker/VS Code, no PHP/Composer)
test-fresh-install:
needs: supported-version-latest
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJSON(needs.supported-version-latest.outputs.matrix) }}
name: Fresh Install ${{ matrix.magento }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Install devcontainer CLI
run: npm install -g @devcontainers/cli
- name: Checkout devcontainer
uses: actions/checkout@v6
with:
path: .devcontainer/magento2-devcontainer
- name: Initialize devcontainer configuration
run: |
# Run init.sh - select latest version (default) and default name
printf '\n\n' | .devcontainer/magento2-devcontainer/bin/init.sh
# Show the generated config
echo "=== devcontainer.json ==="
cat .devcontainer/devcontainer.json
- name: Build and start devcontainer
run: |
devcontainer up --workspace-folder .
- name: Verify services are running
run: |
echo "Waiting for OpenSearch to be ready..."
timeout 120 bash -c 'until curl -s http://localhost:9200/_cluster/health | grep -q "status"; do sleep 5; done'
echo "OpenSearch is ready"
echo "=== Checking PHP ==="
devcontainer exec --workspace-folder . php -v
echo "=== Checking database ==="
devcontainer exec --workspace-folder . \
bash -c 'mysql -h db -umagento -pmagento -e "SELECT 1" magento'
echo "=== Checking OpenSearch ==="
devcontainer exec --workspace-folder . \
bash -c 'curl -s http://opensearch:9200/_cluster/health'
echo "=== Checking RabbitMQ ==="
devcontainer exec --workspace-folder . \
bash -c 'curl -s -u magento:magento http://rabbitmq:15672/api/overview | head -c 200'
echo ""
echo "=== Checking Redis ==="
devcontainer exec --workspace-folder . \
bash -c 'redis-cli -h redis ping'
- name: Create Magento project inside container
run: |
devcontainer exec --workspace-folder . bash -c '
composer create-project \
--repository-url=https://mirror.mage-os.org/ \
"${{ matrix.magento }}" /tmp/magento && \
cp -r /tmp/magento/. /workspace/ && \
rm -rf /tmp/magento
'
- name: Run setup-install.sh
run: |
echo "=== Generated setup:install command ==="
devcontainer exec --workspace-folder . \
bash -c '.devcontainer/magento2-devcontainer/bin/setup-install.sh'
echo ""
echo "=== Running Magento setup:install ==="
devcontainer exec --workspace-folder . \
bash -c '.devcontainer/magento2-devcontainer/bin/setup-install.sh | bash'
- name: Verify Magento installation
run: |
echo "=== Checking Magento version ==="
devcontainer exec --workspace-folder . bin/magento --version
echo "=== Checking Magento status ==="
devcontainer exec --workspace-folder . bin/magento setup:db:status
- name: Show container status
if: always()
run: |
docker ps -a