From 1298e537f520e8e84f9f1bbe65039cd08cdfffe9 Mon Sep 17 00:00:00 2001 From: Daniel Ching Date: Tue, 7 Nov 2023 14:30:48 -0600 Subject: [PATCH 1/2] BUG: Fix missing variable and extra quote --- .github/workflows/macos-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml index 88f203f..75d6728 100644 --- a/.github/workflows/macos-ci.yml +++ b/.github/workflows/macos-ci.yml @@ -18,8 +18,10 @@ jobs: build_type: ["Release"] compiler: ["clang-13", "clang-14"] extra_args: ["--num-tasks=256 --tbb"] + extra_cmake: [""] + extra_ctest: [""] extra_packages: ["clangdev tbb-devel"] - os-release: ["macos-11", "macos-12", "macos-13""] + os-release: ["macos-11", "macos-12", "macos-13"] standard: ["11", "17"] steps: - uses: actions/checkout@v2 From a6f63aa72561ea3fd84e2b862f0d293e75e28fcf Mon Sep 17 00:00:00 2001 From: Daniel Ching Date: Tue, 7 Nov 2023 14:32:28 -0600 Subject: [PATCH 2/2] BUG: Add missing matrix element --- .github/workflows/linux-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 2af9195..cbf67d6 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -49,12 +49,13 @@ jobs: extra_packages: 'clang-tidy-15' standard: '17' os-release: '22.04' - build_type: ['Release'] build_libs: ['shared static'] + build_type: ['Release'] compiler: ['gcc-10', 'gcc-11', 'gcc-12', 'gcc-13', 'clang-13', 'clang-14', 'clang-15'] extra_args: ['--num-tasks=256 --tbb'] - standard: ['11', '17'] + extra_ctest: [''] os-release: ['22.04'] + standard: ['11', '17'] steps: - uses: actions/checkout@v2