Update CI config

This commit is contained in:
Victor Zverovich 2020-11-03 11:48:20 -08:00
parent 98cb9f9931
commit 867b15d77c

View File

@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
cxx: [g++-4.8, g++-8]
cxx: [g++-8, clang++]
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: |
cmake -E make_directory ${{runner.workspace}}/build
apt install ${{matrix.cxx}}
env:
CXX: ${{matrix.cxx}}
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
working-directory: ${{runner.workspace}}/build