Skip to content

build-sys: change shell command [] to test, because [] was recognized as quote delimiters by autoconf/m4 #2403

build-sys: change shell command [] to test, because [] was recognized as quote delimiters by autoconf/m4

build-sys: change shell command [] to test, because [] was recognized as quote delimiters by autoconf/m4 #2403

name: run units target under VALGRIND
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update package information
run: sudo apt-get update
- name: install tools and libraries
run: sudo apt-get install valgrind pkg-config automake bash libjansson-dev libyaml-dev libseccomp-dev libxml2-dev libpcre2-dev gdb
- name: autogen.sh
run: ./autogen.sh
- name: report the version of cc
run: cc --version
- name: configure
run: ./configure --enable-debugging
- name: make
run: make CFLAGS='-g -O0'
- name: make units
run: make units VG=1