Skip to content

Add <lit_type> to std::vector #15

Add <lit_type> to std::vector

Add <lit_type> to std::vector #15

Workflow file for this run

name: Linux CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-gcc7:
runs-on: ubuntu-latest
name: GNU GCC 7
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build easy
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-7 -DEASY_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-gcc8:
runs-on: ubuntu-latest
name: GNU GCC 8
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build easy
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-8 -DEASY_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-gcc9:
runs-on: ubuntu-latest
name: GNU GCC 9
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build easy
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-9 -DEASY_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-clang8:
runs-on: ubuntu-latest
name: Clang 8
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build easy
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=clang++-8 -DEASY_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-clang9:
runs-on: ubuntu-latest
name: Clang 9
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build easy
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=clang++-9 -DEASY_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"