-
Notifications
You must be signed in to change notification settings - Fork 4
103 lines (90 loc) · 3.14 KB
/
test-build.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
name: Build Images (Testing)
on:
push:
branches:
- 'feature/*'
jobs:
Build_PHP_Ubuntu_Test:
strategy:
matrix:
version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
ubuntu-release-name: ['jammy', 'noble']
environment:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for Docker (Jammy)
if: matrix.ubuntu-release-name == 'jammy'
id: meta-jammy
uses: docker/metadata-action@v5
with:
tags: |
type=raw,pattern={{version}},value=${{ matrix.version }}-${{ matrix.ubuntu-release-name }}
type=raw,pattern={{version}},value=${{ matrix.version }}-ubuntu
images: |
${{ secrets.IMAGE_NAME }}
ghcr.io/${{ github.repository }}
- name: Extract metadata (tags, labels) for Docker (Others)
if: matrix.ubuntu-release-name != 'jammy'
id: meta-others
uses: docker/metadata-action@v5
with:
tags: |
type=raw,pattern={{version}},value=${{ matrix.version }}-${{ matrix.ubuntu-release-name }}
images: |
${{ secrets.IMAGE_NAME }}
ghcr.io/${{ github.repository }}
- name: Build and push Docker images (Jammy)
if: matrix.ubuntu-release-name == 'jammy'
uses: docker/build-push-action@v6
with:
push: false
platforms: linux/amd64,linux/arm64
build-args: |
PHP_VERSION=${{ matrix.version }}
UBUNTU_RELEASE_NAME=${{ matrix.ubuntu-release-name }}
tags: ${{ steps.meta-jammy.outputs.tags }}
labels: ${{ steps.meta-jammy.outputs.labels }}
- name: Build and push Docker images (Others)
if: matrix.ubuntu-release-name != 'jammy'
uses: docker/build-push-action@v6
with:
push: false
platforms: linux/amd64,linux/arm64
build-args: |
PHP_VERSION=${{ matrix.version }}
UBUNTU_RELEASE_NAME=${{ matrix.ubuntu-release-name }}
tags: ${{ steps.meta-others.outputs.tags }}
labels: ${{ steps.meta-others.outputs.labels }}
Build_PHP_CentOS8_Test:
strategy:
matrix:
version: ['7.2', '7.3', '7.4', '8.0', '8.1']
environment:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push CentOS based Docker images
uses: docker/build-push-action@v6
with:
push: false
context: centos8
platforms: linux/amd64
build-args: PHP_VERSION=${{ matrix.version }}
tags: ${{ secrets.IMAGE_NAME }}:${{ matrix.version }}