link against libdecrepit for EVP_CIPHER_do_all_sorted #75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ubuntu | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| runs-on: [ubuntu-latest] | |
| shared: [ON, OFF] | |
| cxx: [g++-14] | |
| runs-on: ${{matrix.runs-on}} | |
| steps: | |
| - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
| - name: ccache | |
| uses: hendrikmuhs/[email protected] | |
| with: | |
| key: ${{github.job}}-${{matrix.os}}-{{matrix.shared}} | |
| - name: Setup Ninja | |
| run: sudo apt-get install ninja-build | |
| - name: Prepare | |
| run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build | |
| env: | |
| CXX: ${{matrix.cxx}} | |
| - name: Build | |
| run: cmake --build build -j=4 | |
| - name: Test | |
| run: ctest --output-on-failure --test-dir build |