Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit bd5b404

Browse files
committed
github: remove operative system from continuous matrix
1 parent 5dbef3d commit bd5b404

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/continuous-linux.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build:
1515
name: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
16-
runs-on: ${{matrix.os}}-latest
16+
runs-on: ubuntu-latest
1717
environment: CI
1818
strategy:
1919
fail-fast: false
@@ -23,11 +23,9 @@ jobs:
2323
include:
2424
- name: linux-gcc
2525
family: linux
26-
os: ubuntu
2726
compiler: gcc
2827
- name: linux-clang
2928
family: linux
30-
os: ubuntu
3129
compiler: clang
3230
steps:
3331
- uses: actions/checkout@v2

.github/workflows/continuous-macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build:
1515
name: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
16-
runs-on: ${{matrix.os}}-latest
16+
runs-on: macos-latest
1717
environment: CI
1818
strategy:
1919
fail-fast: false
@@ -23,7 +23,6 @@ jobs:
2323
include:
2424
- name: macos-clang
2525
family: macos
26-
os: macos
2726
compiler: clang
2827
steps:
2928
- uses: actions/checkout@v2

.github/workflows/continuous-windows.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
windows:
1515
name: ${{matrix.family}}-${{matrix.compiler}}-${{matrix.buildtype}}
16-
runs-on: ${{matrix.os}}-latest
16+
runs-on: windows-latest
1717
environment: CI
1818
strategy:
1919
fail-fast: false
@@ -22,15 +22,8 @@ jobs:
2222
buildtype: [debug, release]
2323
include:
2424
- name: windows-msvc
25-
os: windows
2625
family: windows
2726
compiler: msvc
28-
# FIXME: can't use this until allow_failures is added to github.
29-
# See https://github.com/actions/toolkit/issues/399
30-
# - name: windows-msvc-clang-cl
31-
# os: windows
32-
# family: windows
33-
# compiler: msvc-clang-cl
3427
steps:
3528
- uses: actions/checkout@v2
3629
with:

0 commit comments

Comments
 (0)