From c817589f1e47f3b763cf5c5138e0a536d7a86c5b Mon Sep 17 00:00:00 2001 From: Gudmundur Adalsteinsson Date: Tue, 6 Jul 2021 15:06:05 +0000 Subject: [PATCH 1/2] Fix actions --- .github/workflows/linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5cc6e13..acb14fb 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - cppstd: [03, 11, 20] + cppstd: ["03", "11", "20"] buildtype: ["cmake"] drafts: ["ON"] libzmq: ["4.3.4"] @@ -33,7 +33,7 @@ jobs: env: CC: gcc-10 CXX: g++-10 - CMAKE_CPP_STD: DCMAKE_CXX_STANDARD=${{ matrix.cppstd }} + CMAKE_CPP_STD: -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }} BUILD_TYPE: ${{ matrix.buildtype }} ENABLE_DRAFTS: ${{ matrix.drafts }} ZMQ_VERSION: ${{ matrix.libzmq }} From dec80e2cb1cbe326ca086629032a43b88b31f849 Mon Sep 17 00:00:00 2001 From: Gudmundur Adalsteinsson Date: Tue, 6 Jul 2021 15:14:54 +0000 Subject: [PATCH 2/2] Drop 03 and old libzmq --- .github/workflows/linux.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index acb14fb..c4f3d44 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -7,15 +7,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - cppstd: ["03", "11", "20"] + cppstd: ["98", "11", "20"] buildtype: ["cmake"] drafts: ["ON"] libzmq: ["4.3.4"] include: - cppstd: 11 buildtype: "pkgconfig" - drafts: "ON" - libzmq: "4.2.0" + drafts: "OFF" + libzmq: "4.3.4" - cppstd: 20 buildtype: "cmake" drafts: "OFF" @@ -37,3 +37,4 @@ jobs: BUILD_TYPE: ${{ matrix.buildtype }} ENABLE_DRAFTS: ${{ matrix.drafts }} ZMQ_VERSION: ${{ matrix.libzmq }} + VERBOSE: 1