Skip to content

CI improvements

CI improvements #910

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test-debian-like:
fail-fast: false

Check failure on line 8 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 8, Col: 5): Unexpected value 'fail-fast' .github/workflows/ci.yml (Line: 57, Col: 5): Unexpected value 'fail-fast'
strategy:
matrix:
image:
- ubuntu:latest
- ubuntu:20.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 \
ca-certificates \
git \
curl \
libhttp-daemon-perl \
libhttp-daemon-ssl-perl \
libplack-perl \
libtest-mockmodule-perl \
libtest-tcp-perl \
libtest-warnings-perl \
liburi-perl \
net-tools \
make \
;
- uses: actions/checkout@v4
- name: autogen
run: ./autogen
- name: configure
run: ./configure
- name: check
run: make VERBOSE=1 AM_COLOR_TESTS=always check
- name: distcheck
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
- name: distribution tarball is complete
run: ./.github/workflows/scripts/dist-tarball-check
- if: ${{ matrix.image == 'debian:testing' }}
uses: actions/upload-artifact@v4
with:
name: distribution-tarball
path: ddclient-*.tar.gz
test-fedora-like:
fail-fast: false
strategy:
matrix:
image:
- fedora:39
- fedora:latest
- fedora:rawhide
- registry.access.redhat.com/ubi7/ubi:latest
- registry.access.redhat.com/ubi8/ubi:latest
- registry.access.redhat.com/ubi9/ubi:latest
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- name: enable repositories
run: dnf config-manager --enable '*'
- name: install dependencies
run: |
dnf --refresh install -y \
automake \
findutils \
make \
curl \
perl \
perl-HTTP-Daemon \
perl-HTTP-Daemon-SSL \
perl-IO-Socket-INET6 \
perl-Plack \
perl-Test-MockModule \
perl-Test-TCP \
perl-Test-Warnings \
net-tools \
;
- name: autogen
run: ./autogen
- name: configure
run: ./configure
- name: check
run: make VERBOSE=1 AM_COLOR_TESTS=always check
- name: distcheck
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck