Preference aes256 ahead of aes128 for the client #157
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@v4 | |
- name: build | |
run: | | |
mkdir build | |
cd build | |
../configure --enable-fuzz --enable-bundled-libtom --prefix=$PWD/inst | |
make -j3 | |
make -j3 fuzzstandalone | |
make install | |
test -x inst/bin/dbclient | |
test -f inst/share/man/man8/dropbear.8 |