Implement OpenSSL 3.0 OSSL_PARAM API binding for RSA key parameters #583
Workflow file for this run
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: LibreSSL | |
| on: | |
| push: | |
| branches: [ "master", "ci" ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: macos-15-intel | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| luarocks_version: [3.12.0] | |
| lua_version: [luajit2.1] | |
| openssl_version: | |
| - libressl-3.8.4 | |
| - libressl-3.9.2 | |
| - libressl-4.1.2 | |
| - libressl-4.2.1 | |
| env: | |
| MACOSX_DEPLOYMENT_TARGET: 10.12 | |
| LUAROCKS: ${{ matrix.luarocks_version }} | |
| LUA: ${{ matrix.lua_version }} | |
| SSL: ${{ matrix.openssl_version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup | |
| run: | |
| .github/shell/setup_lua.sh && .github/shell/setup_ssl.sh | |
| - name: Build | |
| run: | |
| .github/shell/build.sh | |
| - name: Test | |
| run: | |
| PKG_CONFIG_PATH=$HOME/.usr/lib64/pkgconfig:$HOME/.usr/lib/pkgconfig PATH=$HOME/.usr/bin:$PATH LD_LIBRARY_PATH=$HOME/.usr/lib64:$HOME/.usr/lib make test |