Skip to content

jwk: fix parsing JWKs with only an "x5c" parameter (i.e. no "n" and "e") #702

jwk: fix parsing JWKs with only an "x5c" parameter (i.e. no "n" and "e")

jwk: fix parsing JWKs with only an "x5c" parameter (i.e. no "n" and "e") #702

Workflow file for this run

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