Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
name: Build
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build_archlinux:
|
|
name: Build with Archlinux container
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Change diff
|
|
run: git --no-pager show -m "$GITHUB_SHA" --color
|
|
|
|
- name: Docker Action
|
|
uses: ./.github/actions/archlinux
|
|
|
|
build_debian:
|
|
name: Build with Debian container
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Change diff
|
|
run: git --no-pager show -m "$GITHUB_SHA" --color
|
|
|
|
- name: Docker Action
|
|
uses: ./.github/actions/debian
|
|
|
|
build_centos7:
|
|
name: Build with CentOS 7 container
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Change diff
|
|
run: git --no-pager show -m "$GITHUB_SHA" --color
|
|
|
|
- name: Docker Action
|
|
uses: ./.github/actions/centos7
|
|
|
|
build_centos8:
|
|
name: Build with CentOS 8 container
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Change diff
|
|
run: git --no-pager show -m "$GITHUB_SHA" --color
|
|
|
|
- name: Docker Action
|
|
uses: ./.github/actions/centos8
|