diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f5591c48..5dd64005 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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