mirror of https://github.com/nirenjan/libx52.git
ci: Disable macos-11 and add newer versions
Github has deprecated macos-11 runners and will stop them towards the end of June 2024.fix-macos-14-builds
parent
21050e40a8
commit
c46cec3138
|
@ -15,13 +15,13 @@ jobs:
|
||||||
if: "!(contains(github.event.head_commit.message, '[ci skip]') || contains(github.event.head_commit.message, '[skip ci]'))"
|
if: "!(contains(github.event.head_commit.message, '[ci skip]') || contains(github.event.head_commit.message, '[skip ci]'))"
|
||||||
name: ${{ join(matrix.*, '/') }}
|
name: ${{ join(matrix.*, '/') }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
continue-on-error: ${{ startsWith(matrix.os, 'macos-') || (matrix.os == 'ubuntu-22.04') }}
|
continue-on-error: ${{ startsWith(matrix.os, 'macos-') || (matrix.os == 'ubuntu-24.04') }}
|
||||||
env:
|
env:
|
||||||
CC: ${{ matrix.cc }}
|
CC: ${{ matrix.cc }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-11']
|
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-22.04', 'macos-12', 'macos-13', 'macos-14']
|
||||||
cc: ['gcc', 'clang']
|
cc: ['gcc', 'clang']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue