Skip to content
Open
Show file tree
Hide file tree
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
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
standard: [ c++20 ]
suite: [ github_ci_block_1, github_ci_block_2 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Set TOOLSET
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
compiler: [ g++-13, clang++-19 ]
standard: [ c++14, c++17, c++20, c++23 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Set TOOLSET
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
standard: [ 14, 17, 20 ]
suite: [ github_ci_block_1, github_ci_block_2 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Checkout main boost
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
standard: [ 14 ]
suite: [ github_ci_block_1, github_ci_block_2 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Checkout main boost
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
standard: [ 14, 17, latest ]
suite: [ github_ci_block_1, github_ci_block_2 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Checkout main boost
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
env:
TOOLSET: gcc
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Install Cygwin
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
matrix:
compiler: [ g++-13 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Add repository
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
matrix:
compiler: [ clang++-19 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Add repository
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
standard: [ c++14, c++17, c++20, c++23 ]
suite: [ github_ci_block_1, github_ci_block_2 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- name: Set TOOLSET
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install packages
if: matrix.install
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Use library with add_subdirectory (header-only)
run: |
Expand All @@ -520,7 +520,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Boost
run: |
Expand Down Expand Up @@ -561,7 +561,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Boost
run: |
Expand Down Expand Up @@ -613,7 +613,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Boost
run: |
Expand Down Expand Up @@ -665,7 +665,7 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Boost
run: |
Expand Down Expand Up @@ -733,7 +733,7 @@ jobs:
printenv >> $GITHUB_ENV

- name: checkout project code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Packages
run: |
Expand Down Expand Up @@ -791,7 +791,7 @@ jobs:
echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"+
echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"
nvcc -V
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Packages
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
fi
git config --global pack.threads 0

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
# For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary'
fetch-depth: ${{ matrix.coverage && '0' || '1' }}
Expand All @@ -106,7 +106,7 @@ jobs:
restore-keys: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}-

- name: Fetch Boost.CI
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: boostorg/boost-ci
ref: master
Expand Down
Loading