fix type mismatch and memory deallocation build errors #460
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '00 02 */4 * *' | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
tests: | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: jwlawson/[email protected] | |
if: matrix.os != 'ubuntu-latest' | |
with: | |
cmake-version: '3.5.1' | |
github-api-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check versions | |
run: | | |
set -e | |
cmake --version | |
gcc --version | |
echo "end of versions checking" | |
shell: bash | |
- name: Run tests | |
run: | | |
set -e | |
cd $GITHUB_WORKSPACE | |
mkdir build | |
cd build | |
cmake -DBUILD_TESTS=True .. | |
make -k -j2 VERBOSE=1 | |
ctest --output-on-failure | |
shell: bash |