Update INSTALL to mention libsodium 1.0.12+ #5
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
name: C/C++ CI | |
env: | |
SLOW_TESTS: 1 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-devel: | |
name: Build in Developer Mode | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install-deps | |
run: sudo apt -y install ragel libev-dev liburcu-dev libsodium-dev libunwind8-dev libmaxminddb-dev libsocket6-perl libio-socket-inet6-perl libwww-perl libhttp-daemon-perl libnet-dns-perl | |
- name: autoreconf | |
run: autoreconf -vif | |
- name: configure | |
run: ./configure --enable-developer | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
# - name: make distcheck | |
# run: make distcheck |