CFE-4379: Changed needed for packaging a release #138
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: C++ CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update apt repositories | |
run: sudo apt -y update | |
- name: Install dependencies | |
run: sudo apt -y install check libtool-bin valgrind | |
- name: Bootstrap project | |
run: ./bootstrap.sh | |
- name: Configure project with g++ compiler | |
run: ./configure CC=g++ --enable-debug=yes --with-psql-module=yes --with-csv-module=yes | |
- name: Compile project | |
run: make | |
- name: Run tests | |
run: make check |