mirror of
https://github.com/boostorg/config.git
synced 2025-07-31 12:57:16 +02:00
Update CI clang version now that gcc has changed. (#489)
This commit is contained in:
52
.github/workflows/ci.yml
vendored
52
.github/workflows/ci.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
compiler: [ g++-11, g++-12, clang++-14 ]
|
compiler: [ g++-11, g++-12, g++-13 ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
@ -34,7 +34,7 @@ jobs:
|
|||||||
- name: Add repository
|
- name: Add repository
|
||||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: sudo apt install g++-11 g++-12 clang-14
|
run: sudo apt install g++-11 g++-12 g++-13
|
||||||
- name: Checkout main boost
|
- name: Checkout main boost
|
||||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
- name: Update Dependencies
|
- name: Update Dependencies
|
||||||
@ -63,7 +63,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
compiler: [ clang++-11, clang++-12, clang++-13 ]
|
compiler: [ clang++-15 ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
@ -78,7 +78,7 @@ jobs:
|
|||||||
- name: Add repository
|
- name: Add repository
|
||||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: sudo apt install clang-11 clang-12 clang-13
|
run: sudo apt install clang-15
|
||||||
- name: Checkout main boost
|
- name: Checkout main boost
|
||||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
- name: Update Dependencies
|
- name: Update Dependencies
|
||||||
@ -146,6 +146,50 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
run: ../../../b2 toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
run: ../../../b2 toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||||
working-directory: ../boost-root/libs/config/test
|
working-directory: ../boost-root/libs/config/test
|
||||||
|
ubuntu-focal-clang:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
compiler: [ clang++-11, clang++-12 ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: '0'
|
||||||
|
- uses: mstachniuk/ci-skip@v1
|
||||||
|
with:
|
||||||
|
commit-filter: '[skip ci];[ci skip];[CI SKIP];[SKIP CI];***CI SKIP***;***SKIP CI***;[windows];[Windows];[WINDOWS];[apple];[Apple];[APPLE]'
|
||||||
|
commit-filter-separator: ';'
|
||||||
|
fail-fast: true
|
||||||
|
- name: Set TOOLSET
|
||||||
|
run: echo ${{ matrix.compiler }} | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
|
||||||
|
- name: Add repository
|
||||||
|
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||||
|
- name: Install packages
|
||||||
|
run: sudo apt install clang-11 clang-12
|
||||||
|
- name: Checkout main boost
|
||||||
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
|
- name: Update Dependencies
|
||||||
|
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Copy files
|
||||||
|
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Bootstrap
|
||||||
|
run: ./bootstrap.sh
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Generate headers
|
||||||
|
run: ./b2 headers
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Generate user config
|
||||||
|
run: 'echo "using $TOOLSET : : ${{ matrix.compiler }} ;" > ~/user-config.jam'
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Config info
|
||||||
|
run: ../../../b2 print_config_info toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||||
|
working-directory: ../boost-root/libs/config/test
|
||||||
|
- name: Test
|
||||||
|
run: ../../../b2 toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||||
|
working-directory: ../boost-root/libs/config/test
|
||||||
macos_11:
|
macos_11:
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
strategy:
|
strategy:
|
||||||
|
Reference in New Issue
Block a user