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
|
||||
|
||||
jobs:
|
||||
test-ubuntu:
|
||||
test-debian-like:
|
||||
strategy:
|
||||
matrix:
|
||||
ubuntu:
|
||||
- 16.04
|
||||
- latest
|
||||
runs-on: ubuntu-${{ matrix.ubuntu }}
|
||||
image:
|
||||
- ubuntu:latest
|
||||
- ubuntu:16.04
|
||||
- debian:testing
|
||||
- debian:stable
|
||||
- debian:oldstable
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ matrix.image }}
|
||||
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
|
||||
- name: install test dependencies
|
||||
run: sudo apt-get install libtest-warnings-perl
|
||||
- name: autogen
|
||||
run: ./autogen
|
||||
- name: configure
|
||||
|
|
Loading…
Reference in a new issue