1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

update ci

This commit is contained in:
neargye 2021-03-27 18:51:41 +02:00
parent c5b5eea3bd
commit 252cbd0136
2 changed files with 6 additions and 6 deletions

View file

@ -9,11 +9,11 @@ jobs:
fail-fast: false
matrix:
config:
- { os: macos-10.15, xcode: "12.0.1" } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xcode
- { os: macos-11.0, xcode: "11.7" } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11.0-Readme.md#xcode
- { os: macos-10.15 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xcode
- { os: macos-11.0 } # https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11.0-Readme.md#xcode
build: [Debug, Release]
name: "xcode${{matrix.config.xcode}}:${{matrix.build}}"
name: "${{matrix.config.os}}:${{matrix.build}}"
steps:
- uses: actions/checkout@v2

View file

@ -10,9 +10,9 @@ jobs:
matrix:
build: [Debug, Release]
compiler:
- { cc: "gcc-9", cxx: "g++-9" }
- { cc: "gcc-10", cxx: "g++-10" }
- { cc: "clang-9", cxx: "clang++-9" }
- { cc: "gcc-9", cxx: "g++-9" }
- { cc: "gcc-10", cxx: "g++-10" }
- { cc: "clang-9", cxx: "clang++-9" }
- { cc: "clang-10", cxx: "clang++-10" }
name: "${{matrix.compiler.cxx}}:${{matrix.build}}"