Skip to content

Commit

Permalink
Fix patch filename
Browse files Browse the repository at this point in the history
  • Loading branch information
bluetarpmedia committed May 23, 2024
1 parent 11bdee2 commit 0af97af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04]
compiler: [g++-13, g++-14, clang++-18]
compiler: [g++-13, g++-14]
cxx_std: [c++2b]
stdlib: [libstdc++]
include:
- os: ubuntu-24.04
compiler: clang++-18
cxx_std: c++20
stdlib: libstdc++
- os: ubuntu-22.04
compiler: clang++-15
cxx_std: c++20
Expand Down Expand Up @@ -89,6 +93,6 @@ jobs:
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.stdlib }}.patch
path: regression-tests/${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.stdlib }}.patch
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.cxx_std }}-${{ matrix.stdlib }}.patch
path: regression-tests/${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.cxx_std }}-${{ matrix.stdlib }}.patch
if-no-files-found: ignore
6 changes: 0 additions & 6 deletions regression-tests/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,10 @@ else
exec_out_dir="$expected_results_dir/clang-12"
elif [[ "$compiler_version" == *"clang version 15.0"* ]]; then
exec_out_dir="$expected_results_dir/clang-15"
# c++2b causes strange issues on GitHub ubuntu runners
cxx_std="c++20"
elif [[ "$compiler_version" == *"clang version 18.1"* ]]; then
exec_out_dir="$expected_results_dir/clang-18"
# c++2b causes strange issues on GitHub ubuntu runners
cxx_std="c++20"
elif [[ "$compiler_version" == *"g++-10"* ]]; then
exec_out_dir="$expected_results_dir/gcc-10"
# GCC 10 does not support c++2b
cxx_std=c++20
elif [[ "$compiler_version" == *"g++-12"* ||
"$compiler_version" == *"g++-13"*
]]; then
Expand Down

0 comments on commit 0af97af

Please sign in to comment.