From 2d1b596948f993ab6b35b3999d6d66b78a6e63c4 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Fri, 13 Dec 2019 22:25:46 +0200 Subject: [PATCH] Try adding gcc and clang for linux --- .github/workflows/spec-tests.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/spec-tests.yml b/.github/workflows/spec-tests.yml index f10f443..ab895ae 100644 --- a/.github/workflows/spec-tests.yml +++ b/.github/workflows/spec-tests.yml @@ -6,14 +6,16 @@ jobs: build-linux: runs-on: ubuntu-latest #${{ matrix.os }} - #strategy: - # fail-fast: false - # matrix: - # os: [macos-latest, ubuntu-latest, windows-latest] + strategy: + fail-fast: false + matrix: + compiler: [gcc, clang] steps: - uses: actions/checkout@v1 - name: configure + env: + CC: ${{ matrix.compiler }} run: | mkdir build cd build @@ -50,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - toolset: [ClangCL, v142] + toolset: ["-T ClangCL", ""] steps: - uses: actions/checkout@v1 @@ -58,7 +60,7 @@ jobs: run: | mkdir build cd build - cmake -T ${{ matrix.toolset }} .. + cmake ${{ matrix.toolset }} .. - name: make run: | cmake --build build --config Release