GHA: add job on Slackware 15.0

Closes #10230
This commit is contained in:
andy5995 2023-01-04 17:33:52 -06:00 committed by Daniel Stenberg
parent 4cfab52721
commit f92aae86c6
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -233,3 +233,26 @@ jobs:
name: 'run tests'
env:
TFLAGS: "${{ matrix.build.tflags }}"
slackware-15_0:
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
# Docker Hub image that `container-job` executes in
container: andy5995/slackware-build-essential:15.0
steps:
- uses: actions/checkout@v3
- run: autoreconf -fi
name: 'autoreconf'
- run: ./configure --enable-warnings --enable-werror --with-openssl
name: 'configure'
- run: make V=1 -j$(expr $(nproc) - 1)
name: 'make'
- run: make V=1 examples -j$(expr $(nproc) - 1)
name: 'make examples'
- run: make V=1 -C tests -j$(expr $(nproc) - 1)
name: 'make tests'