123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- name: Packaging Tests
- # START OF COMMON SECTION
- on:
- push:
- branches: [ 'master', 'main', 'release/**' ]
- pull_request:
- branches: [ '*' ]
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- # END OF COMMON SECTION
- jobs:
- build_wolfssl:
- name: Package wolfSSL
- runs-on: ubuntu-latest
- # This should be a safe limit for the tests to run.
- timeout-minutes: 10
- steps:
- - name: Checkout wolfSSL
- uses: actions/checkout@v4
- - name: Configure wolfSSL
- run: |
- autoreconf -ivf
- ./configure --enable-distro --enable-all \
- --disable-openssl-compatible-defaults --enable-intelasm \
- --enable-dtls13 --enable-dtls-mtu \
- --enable-sp-asm --disable-examples --disable-silent-rules
- - name: Make sure OPENSSL_COMPATIBLE_DEFAULTS is not present in options.h
- run: |
- ! grep OPENSSL_COMPATIBLE_DEFAULTS wolfssl/options.h
- - name: Build wolfSSL .deb
- run: make deb-docker
- - name: Build wolfSSL .rpm
- run: make rpm-docker
- - name: Confirm packages built
- run: |
- DEB_COUNT=$(find -name 'libwolfssl*.deb' | wc -l)
- if [ "$DEB_COUNT" != "2" ]; then
- echo Did not find exactly two deb packages!!!
- exit 1
- fi
- RPM_COUNT=$(find -name 'wolfssl*.rpm' | wc -l)
- if [ "$RPM_COUNT" != "4" ]; then
- echo Did not find exactly four rpm packages!!!
- exit 1
- fi
|