Skip to content

ci: update macos runners #460

ci: update macos runners

ci: update macos runners #460

Workflow file for this run

name: Debug build
on:
push:
branches: [master]
paths:
- .github/workflows/build.yml
- .github/workflows/debug.yml
- CMakeLists.txt
- cmake/**
- icons.qrc
- icons/**
- include/**
- src/**
- windows.rc
pull_request:
branches: [master]
paths:
- .github/workflows/build.yml
- .github/workflows/debug.yml
- CMakeLists.txt
- cmake/**
- icons.qrc
- icons/**
- include/**
- src/**
- windows.rc
schedule:
- cron: 0 5 * * 5
concurrency:
group: debug-${{ github.ref }}
cancel-in-progress: true
jobs:
build-linux:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
compiler:
- Clang
- GCC
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}
build-windows:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022]
compiler:
- Clang
- MSVC
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}
build-macos:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-14, macos-15]
compiler:
- Clang
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}