Skip to content

Commit e9be2da

Browse files
authored
Upgrade GCC version in CI workflow
1 parent 93150ed commit e9be2da

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pika.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,13 @@ jobs:
231231
- name: Install Deps
232232
run: |
233233
brew list --versions cmake && brew uninstall --ignore-dependencies --force cmake || true
234-
brew install gcc@10 automake cmake make binutils
234+
brew install gcc@13 automake cmake make binutils
235235
236236
- name: Configure CMake
237237
run: |
238-
GCC_PREFIX=$(brew --prefix gcc@10)
239-
export CC=$GCC_PREFIX/bin/gcc-10
240-
cmake -B build -DCMAKE_C_COMPILER=$GCC_PREFIX/bin/gcc-10 -DUSE_PIKA_TOOLS=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_CXX_FLAGS_DEBUG=-fsanitize=address -D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
238+
GCC_PREFIX=$(brew --prefix gcc@13)
239+
export CC=$GCC_PREFIX/bin/gcc-13
240+
cmake -B build -DCMAKE_C_COMPILER=$GCC_PREFIX/bin/gcc-13 -DUSE_PIKA_TOOLS=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_CXX_FLAGS_DEBUG=-fsanitize=address -D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
241241
242242
- name: Build
243243
run: |

0 commit comments

Comments
 (0)