response: avoid proto memory leaks upon errors in response processing #690
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y apache2-dev libcjose-dev libssl-dev check pkg-config | |
| sudo apt-get install -y libjansson-dev libcurl4-openssl-dev libhiredis-dev libpcre2-dev libjq-dev check | |
| sudo apt-get install -y valgrind | |
| - name: Configure | |
| run: | | |
| ./autogen.sh | |
| ./configure --with-jq | |
| - name: Make | |
| run: make | |
| - name: Test | |
| run: make check || (cat test/test-suite.log && exit -1) | |
| - name: Valgrind | |
| run: make valgrind | |
| - name: Distcheck | |
| run: make distcheck DESTDIR=/tmp/mod_auth_openidc |