release 3.4.0: depend on liboauth2 >= 1.6.2 #453
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: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libssl-dev libcurl4-openssl-dev libhiredis-dev libmemcached-dev | |
sudo apt-get install -y libjansson-dev libcjose-dev apache2-dev pkg-config | |
cd /tmp | |
git clone https://github.com/zmartzone/liboauth2.git | |
cd liboauth2 | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
- name: Configure | |
run: | | |
./autogen.sh | |
./configure | |
- name: Make | |
run: make | |
- name: Distcheck | |
run: make distcheck DESTDIR="/tmp/mod_auth_openidc" |