-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (34 loc) · 1.01 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
name: amd64 Docker
on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'
jobs:
Distros:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu]
fail-fast: false
env:
DISTRO: ${{ matrix.distro }}
steps:
- uses: actions/checkout@v2
- 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 image
run: make --directory=ci ${DISTRO}_install_devel
- name: Build Install
run: make --directory=ci ${DISTRO}_install_build
- name: Test Install
run: make --directory=ci ${DISTRO}_install_test