-
Notifications
You must be signed in to change notification settings - Fork 5
88 lines (74 loc) · 2.7 KB
/
test.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
name: Run tests on Docker images
on:
workflow_dispatch:
pull_request:
branches:
- main
env:
DOCKER_ORG_USERNAME: ${{ vars.DOCKER_ORG_USERNAME || 'meghsh' }}
jobs:
build-php:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build PHP Docker image
uses: docker/build-push-action@v5
with:
file: php/Dockerfile
context: php
load: true
tags: ${{ env.DOCKER_ORG_USERNAME }}/php:${{ matrix.php_version }}
build-args: |
PHP_VERSION=${{ matrix.php_version }}
- name: Install Container Structure Test
run: |
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
chmod +x container-structure-test-linux-amd64
sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
- name: Run Container Structure Tests
run: |
container-structure-test test --image ${{ env.DOCKER_ORG_USERNAME }}/php:${{ matrix.php_version }} --config php-structure-test.yaml
build-openlitespeed:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php_version: "7.4"
lsphp: "lsphp74"
- php_version: "8.1"
lsphp: "lsphp81"
- php_version: "8.2"
lsphp: "lsphp82"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build OpenLiteSpeed Docker image
uses: docker/build-push-action@v5
with:
file: openlitespeed/Dockerfile
context: openlitespeed
load: true
tags: ${{ env.DOCKER_ORG_USERNAME }}/openlitespeed:${{ matrix.php_version }}
build-args: |
PHP_VERSION=${{ matrix.php_version }}
LSPHP=${{ matrix.lsphp }}
- name: Install Container Structure Test
run: |
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
chmod +x container-structure-test-linux-amd64
sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
- name: Run Container Structure Tests
run: |
container-structure-test test --image ${{ env.DOCKER_ORG_USERNAME }}/openlitespeed:${{ matrix.php_version }} --config ols-structure-test.yaml