metrics: correct name/value counters and fix memory leak #559
Workflow file for this run
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 | |
| - name: Configure | |
| run: | | |
| ./autogen.sh | |
| ./configure | |
| - name: Make | |
| run: make | |
| - name: Test | |
| run: make check || (cat test-suite.log && exit -1) | |
| - name: Distcheck | |
| run: make distcheck DESTDIR=/tmp/mod_auth_openidc |