From 42d67523ebc8fdab2453e7056cd877187567e358 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Wed, 4 Aug 2021 11:24:47 +0200 Subject: [PATCH] Working on Github Actions --- .github/workflows/build-and-test.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6bc1f4ed..61ca34aa 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -21,33 +21,27 @@ jobs: - { name: "Linux / GCC (Debug, Single Precision)", os: ubuntu-latest, - artifact: "ubuntu_gcc.7z", build_type: "Debug", cc: "gcc", cxx: "g++", - archiver: "7z a", generators: "Ninja", double_precision: false } - { name: "Linux / GCC (Release, Single Precision)", os: ubuntu-latest, - artifact: "ubuntu_gcc.7z", build_type: "Release", cc: "gcc", cxx: "g++", - archiver: "7z a", generators: "Ninja", double_precision: false } - { name: "Linux / Clang (Debug, Single Precision)", os: ubuntu-latest, - artifact: "ubuntu_gcc.7z", build_type: "Debug", cc: "clang", cxx: "clang++", - archiver: "7z a", generators: "Ninja", double_precision: false } @@ -88,6 +82,9 @@ jobs: - name: CMake Configure shell: bash + env: + CC: ${{ matrix.config.cc }} + CXX: ${{ matrix.config.cxx }} run: | mkdir build cmake \