-
Notifications
You must be signed in to change notification settings - Fork 5
174 lines (147 loc) · 5.82 KB
/
Copy pathci.yml
File metadata and controls
174 lines (147 loc) · 5.82 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
name: CI
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
pull_request:
branches: [main]
paths-ignore:
- 'docs/**'
jobs:
# Version-matrix discovery — one job per distribution, since the
# supported-version action only emits a single project per call.
supported-version-magento:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.v.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v8.4.0
id: v
supported-version-mage-os:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.v.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v8.4.0
id: v
with:
project: mage-os
supported-version-mage-os-minimal:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.v.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v8.4.0
id: v
with:
project: mage-os-minimal
supported-version-latest:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.v.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@v8.4.0
id: v
with:
kind: latest
# Existing-project tests for each distribution — delegate to the reusable
# workflow so the matrix steps live in one place.
test-existing-project-magento:
needs: supported-version-magento
uses: ./.github/workflows/_test-existing-project.yml
with:
matrix: ${{ needs.supported-version-magento.outputs.matrix }}
test-existing-project-mage-os:
needs: supported-version-mage-os
uses: ./.github/workflows/_test-existing-project.yml
with:
matrix: ${{ needs.supported-version-mage-os.outputs.matrix }}
repository_url: https://repo.mage-os.org/
test-existing-project-mage-os-minimal:
needs: supported-version-mage-os-minimal
uses: ./.github/workflows/_test-existing-project.yml
with:
matrix: ${{ needs.supported-version-mage-os-minimal.outputs.matrix }}
repository_url: https://repo.mage-os.org/
# TODO: drop this override once graycoreio/github-actions-magento2
# removes `rabbitmq` from mage-os-minimal's individual.json and we
# bump the @v pin below. At that point we can switch the reusable
# workflow to derive has_rabbitmq from matrix.rabbitmq directly.
has_rabbitmq: false
# Fresh install (user only has Docker/VS Code, no PHP/Composer). Stays
# vanilla-only: init.sh runs before composer.json exists, so its menu —
# which only lists Magento versions by design — is the only stack source.
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@v4
- 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