Also run tests on Debian testing, stable, oldstable
This commit is contained in:
parent
9c6c7a2b39
commit
451bdd1086
1 changed files with 18 additions and 7 deletions
25
.github/workflows/ci.yml
vendored
25
.github/workflows/ci.yml
vendored
|
@ -9,17 +9,28 @@ on:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-ubuntu:
|
test-debian-like:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ubuntu:
|
image:
|
||||||
- 16.04
|
- ubuntu:latest
|
||||||
- latest
|
- ubuntu:16.04
|
||||||
runs-on: ubuntu-${{ matrix.ubuntu }}
|
- debian:testing
|
||||||
|
- debian:stable
|
||||||
|
- debian:oldstable
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ matrix.image }}
|
||||||
steps:
|
steps:
|
||||||
|
- name: install dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update &&
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
|
automake \
|
||||||
|
libtest-warnings-perl \
|
||||||
|
make \
|
||||||
|
;
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: install test dependencies
|
|
||||||
run: sudo apt-get install libtest-warnings-perl
|
|
||||||
- name: autogen
|
- name: autogen
|
||||||
run: ./autogen
|
run: ./autogen
|
||||||
- name: configure
|
- name: configure
|
||||||
|
|
Loading…
Reference in a new issue