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