From: andy5995 Date: Wed, 4 Jan 2023 23:33:52 +0000 (-0600) Subject: GHA: add job on Slackware 15.0 X-Git-Tag: curl-7_88_0~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f92aae86c6796ec77d12dbed4706a46d697f0842;p=thirdparty%2Fcurl.git GHA: add job on Slackware 15.0 Closes #10230 --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 3673fc3a7b..4505c6692e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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'