Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux CI: test on Slackware 15.0 #10230

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/linux.yml
Expand Up @@ -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'