-
Notifications
You must be signed in to change notification settings - Fork 16
37 lines (34 loc) · 1.1 KB
/
amd64_docker.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
# ref: https://github.com/docker-library/official-images
name: amd64 Docker
on: [push, pull_request, workflow_dispatch]
jobs:
Distros:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu]
fail-fast: false
env:
DISTRO: amd64_${{ matrix.distro }}
steps:
- uses: actions/checkout@v4
- name: Check docker
run: |
docker info
docker buildx ls
- name: Build env image
run: make --directory=ci ${DISTRO}_env
- name: Build devel project
run: make --directory=ci ${DISTRO}_devel
- name: Build project
run: make --directory=ci ${DISTRO}_build
- name: Test project
run: make --directory=ci ${DISTRO}_test
- name: Build install env image
run: make --directory=ci ${DISTRO}_install_env
- name: Build install devel project
run: make --directory=ci ${DISTRO}_install_devel
- name: Build install project
run: make --directory=ci ${DISTRO}_install_build
- name: Test install project
run: make --directory=ci ${DISTRO}_install_test