-
Notifications
You must be signed in to change notification settings - Fork 0
132 lines (113 loc) · 3.68 KB
/
build.yml
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
name: Build
on:
schedule:
- cron: '5 0 * * *'
workflow_dispatch:
push:
branches:
- main
paths:
- Dockerfile.php
env:
DOCKER_BUILDKIT: 1
permissions:
contents: read
packages: write
id-token: write
jobs:
base:
name: "${{ matrix.version }}"
runs-on: ubuntu-latest
strategy:
matrix:
version:
- 8.2
- 8.3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login into Docker Registery
run: echo "${{ secrets.QUAY_ROBOT_PASSWORD }}" | docker login quay.io -u friendsofshopware+devcontainer_gh_actions --password-stdin
- name: Install and configure Namespace CLI
uses: namespacelabs/nscloud-setup@v0
- name: Configure Namespace powered Buildx
uses: namespacelabs/nscloud-setup-buildx-action@v0
- uses: docker/build-push-action@v5
with:
tags: quay.io/friendsofshopware/devcontainer-base:${{ matrix.version }}
platforms: linux/amd64,linux/arm64
file: Dockerfile.php
build-args: |
PHP_VERSION=${{ matrix.version }}
push: true
provenance: false
generate-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.generate-matrix.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate Matrix
id: generate-matrix
run: |
MATRIX=$(node matrix.mjs)
echo "matrix<<EOF" >> $GITHUB_OUTPUT
echo "$MATRIX" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
build-flex:
runs-on: ubuntu-latest
needs:
- base
- generate-matrix
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login into Docker Registery
run: echo "${{ secrets.QUAY_ROBOT_PASSWORD }}" | docker login quay.io -u friendsofshopware+devcontainer_gh_actions --password-stdin
- name: Install and configure Namespace CLI
uses: namespacelabs/nscloud-setup@v0
- name: Configure Namespace powered Buildx
uses: namespacelabs/nscloud-setup-buildx-action@v0
- uses: docker/build-push-action@v5
with:
tags: quay.io/friendsofshopware/devcontainer:${{ matrix.tag }}-${{ matrix.phpVersion }}
platforms: linux/amd64,linux/arm64
file: Dockerfile
build-args: |
PHP_VERSION=${{ matrix.phpVersion }}
SHOPWARE_VERSION=${{ matrix.swVersion }}
push: true
provenance: false
build-dev:
runs-on: ubuntu-latest
needs:
- base
- generate-matrix
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login into Docker Registery
run: echo "${{ secrets.QUAY_ROBOT_PASSWORD }}" | docker login quay.io -u friendsofshopware+devcontainer_gh_actions --password-stdin
- name: Install and configure Namespace CLI
uses: namespacelabs/nscloud-setup@v0
- name: Configure Namespace powered Buildx
uses: namespacelabs/nscloud-setup-buildx-action@v0
- uses: docker/build-push-action@v5
with:
tags: quay.io/friendsofshopware/devcontainer-dev:${{ matrix.tag }}-${{ matrix.phpVersion }}
platforms: linux/amd64,linux/arm64
file: Dockerfile.dev
build-args: |
PHP_VERSION=${{ matrix.phpVersion }}
SHOPWARE_VERSION=${{ matrix.swVersion }}
push: true
provenance: false