From 2623b4081a1b299f0593ecf1c437f9577672f06a Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Wed, 18 Sep 2024 15:00:37 +0200 Subject: [PATCH] [INFRA] Use macos-14 macos-14 uses ARM processors (M1) --- .github/workflows/ci_macos.yml | 2 +- .github/workflows/ci_sanitizer.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index cf582456..c9ac3a07 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -27,7 +27,7 @@ defaults: jobs: build: name: ${{ matrix.compiler }} - runs-on: macos-12 + runs-on: macos-14 if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint' strategy: fail-fast: false diff --git a/.github/workflows/ci_sanitizer.yml b/.github/workflows/ci_sanitizer.yml index 190ef61f..ac8d7085 100644 --- a/.github/workflows/ci_sanitizer.yml +++ b/.github/workflows/ci_sanitizer.yml @@ -32,11 +32,11 @@ jobs: fail-fast: false matrix: name: [ASan, TSan, UBSan] - os: [ubuntu-latest, macos-12] + os: [ubuntu-latest, macos-14] build_type: [Release, RelWithDebInfo, Debug] exclude: - name: "TSan" - os: macos-12 + os: macos-14 include: - name: "ASan" @@ -46,14 +46,14 @@ jobs: cxx_flags: "-fno-omit-frame-pointer -fsanitize=thread" - name: "UBSan" - os: macos-12 + os: macos-14 cxx_flags: "-fno-omit-frame-pointer -fsanitize=undefined,float-divide-by-zero,implicit-conversion,local-bounds,nullability -Wno-pass-failed" - name: "UBSan" os: ubuntu-latest cxx_flags: "-fno-omit-frame-pointer -fsanitize=undefined,float-divide-by-zero" - - os: macos-12 + - os: macos-14 compiler: clang-18 - os: ubuntu-latest