Skip to content

Merge branch 'master' of github.com:choll/xtr #460

Merge branch 'master' of github.com:choll/xtr

Merge branch 'master' of github.com:choll/xtr #460

name: Ubuntu-GCC-Conan
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
except: [1, 0]
pic: [1, 0]
rtti: [1, 0]
steps:
- uses: actions/checkout@v2
- name: install conan
run: |
pip install --user conan
conan profile detect
- name: install dependencies
run: conan install . --build missing -s compiler.libcxx=libstdc++11
- name: make
run: URING=0 make -j2 EXCEPTIONS=${{matrix.except}} PIC=${{matrix.pic}} RTTI=${{matrix.rtti}} all
- name: test
run: URING=0 make -j2 EXCEPTIONS=${{matrix.except}} PIC=${{matrix.pic}} RTTI=${{matrix.rtti}} check