ci: build on old distro
This should help to catch build breaks Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
This commit is contained in:
parent
edc4e52533
commit
90b12595bb
1 changed files with 25 additions and 0 deletions
25
.github/workflows/cibuild.yml
vendored
25
.github/workflows/cibuild.yml
vendored
|
@ -103,6 +103,31 @@ jobs:
|
|||
run: .github/workflows/cibuild.sh CONFIGURE
|
||||
- name: Make distcheck
|
||||
run: .github/workflows/cibuild.sh DISTCHECK
|
||||
build-compat:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- image: ubuntu:18.04
|
||||
name: build (compat, ${{ matrix.image }})
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
COMPILER: none
|
||||
container:
|
||||
image: ${{ matrix.image }}
|
||||
steps:
|
||||
- name: Repository checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Ubuntu setup
|
||||
run: .github/workflows/cibuild-setup-ubuntu.sh
|
||||
- name: Configure
|
||||
run: .github/workflows/cibuild.sh CONFIGURE
|
||||
- name: Code checks
|
||||
run: .github/workflows/cibuild.sh CODECHECK
|
||||
- name: Configure & Make
|
||||
run: .github/workflows/cibuild.sh MAKE
|
||||
- name: Check
|
||||
run: .github/workflows/cibuild.sh CHECK
|
||||
build-arch:
|
||||
name: build (qemu-user, ${{ matrix.arch }})
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue