Skip to content

Script to rstrip files. (#83) #178

Script to rstrip files. (#83)

Script to rstrip files. (#83) #178

Workflow file for this run

name: Linux CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-gcc9:
runs-on: ubuntu-20.04
name: GNU GCC 9
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build lorina
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-9 -DLORINA_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests
build-gcc10:
runs-on: ubuntu-20.04
name: GNU GCC 10
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build lorina
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-10 -DLORINA_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests
build-clang11:
runs-on: ubuntu-20.04
name: Clang 11
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build lorina
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=clang++-11 -DLORINA_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests