forked from boostorg/logic
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@ -132,20 +132,23 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
git config --global pack.threads 0
|
git config --global pack.threads 0
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
# For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary'
|
# For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary'
|
||||||
fetch-depth: ${{ matrix.coverage && '0' || '1' }}
|
fetch-depth: ${{ matrix.coverage && '0' || '1' }}
|
||||||
|
|
||||||
- name: Cache ccache
|
- name: Cache ccache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
if: env.B2_USE_CCACHE
|
if: env.B2_USE_CCACHE
|
||||||
with:
|
with:
|
||||||
path: ~/.ccache
|
path: ~/.ccache
|
||||||
key: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}
|
key: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}-${{github.sha}}
|
||||||
|
restore-keys: |
|
||||||
|
${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}-
|
||||||
|
${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}
|
||||||
|
|
||||||
- name: Fetch Boost.CI
|
- name: Fetch Boost.CI
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: boostorg/boost-ci
|
repository: boostorg/boost-ci
|
||||||
ref: master
|
ref: master
|
||||||
|
Reference in New Issue
Block a user