Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 18 additions & 49 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,36 +31,6 @@ jobs:
fail-fast: false
matrix:
include:
- toolset: gcc-5
cxxstd: "14,1z"
os: ubuntu-22.04
container: ubuntu:16.04
install: g++-5
supported: true
- toolset: gcc-6
cxxstd: "14,1z"
os: ubuntu-22.04
container: ubuntu:16.04
install: g++-6
supported: true
- toolset: gcc-7
cxxstd: "14,17"
os: ubuntu-22.04
container: ubuntu:18.04
install: g++-7
supported: true
- toolset: gcc-8
cxxstd: "14,17,2a"
os: ubuntu-22.04
container: ubuntu:18.04
install: g++-8
supported: true
- toolset: gcc-9
cxxstd: "14,17,2a"
os: ubuntu-22.04
container: ubuntu:18.04
install: g++-9
supported: true
- toolset: gcc-10
cxxstd: "14,17,2a"
os: ubuntu-22.04
Expand All @@ -81,12 +51,11 @@ jobs:
os: ubuntu-22.04
install: g++-13
supported: true
- toolset: clang
install: clang-9
compiler: clang++-9
cxxstd: "14,17"
os: ubuntu-22.04
container: ubuntu:18.04
- toolset: gcc-14
cxxstd: "14,17,20"
os: ubuntu-24.04
install: g++-14
supported: true
- toolset: clang
install: clang-10
compiler: clang++-10
Expand Down Expand Up @@ -134,17 +103,17 @@ jobs:
- description: macos-13
toolset: clang
cxxstd: "14,17,20"
os: macos-11
os: macos-13
supported: true
- description: macos-14
toolset: clang
cxxstd: "14,17,20"
os: macos-11
os: macos-14
supported: true
- description: macos-15
toolset: clang
cxxstd: "14,17,20"
os: macos-11
os: macos-15
supported: true

needs: [runner-selection]
Expand Down Expand Up @@ -175,7 +144,7 @@ jobs:
- uses: actions/checkout@v3

- name: Cache ccache
uses: actions/cache@v2
uses: actions/cache@v4
if: env.B2_USE_CCACHE
with:
path: ~/.ccache
Expand Down Expand Up @@ -341,11 +310,11 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
- os: macos-11
- os: macos-12
- os: ubuntu-24.04
- os: macos-13
- os: macos-14
- os: macos-15

runs-on: ${{matrix.os}}

Expand Down Expand Up @@ -389,11 +358,11 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
- os: macos-11
- os: macos-12
- os: ubuntu-24.04
- os: macos-13
- os: macos-14
- os: macos-15

runs-on: ${{matrix.os}}

Expand Down Expand Up @@ -447,11 +416,11 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
- os: macos-11
- os: macos-12
- os: ubuntu-24.04
- os: macos-13
- os: macos-14
- os: macos-15

runs-on: ${{matrix.os}}

Expand Down
Loading