release v0.6.2.3 #40
Workflow file for this run
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y pkg-config make gcc gdb valgrind vim autoconf automake libtool | |
sudo apt-get install -y libssl-dev libjansson-dev check | |
- name: Configure | |
run: | | |
./configure CFLAGS="-g -O0" LDFLAGS="-lrt" | |
- name: Make | |
run: make | |
- name: Test | |
run: make check | |
- name: Valgrind | |
env: | |
CK_FORK: no | |
run: | | |
valgrind --leak-check=full --error-exitcode=1 --show-possibly-lost=no --read-inline-info=yes --keep-debuginfo=yes --undef-value-errors=no ./test/check_cjose |