Enable SK_ECDSA and SK_ED25519 only when respective signature types are also enabled #75
This file contains 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
# Can be used locally with https://github.com/nektos/act | |
name: Out of tree build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
outoftree: | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build | |
run: | | |
mkdir build | |
cd build | |
../configure --enable-fuzz --enable-bundled-libtom --prefix=$PWD/inst | |
make -d -j3 | |
make -j3 fuzzstandalone | |
make install | |
test -x inst/bin/dbclient | |
test -f inst/share/man/man8/dropbear.8 |