This commit is contained in:
Siarhei Fedartsou 2024-05-26 19:54:41 +02:00
parent 99a19e5a32
commit 3184d53a2b

View File

@ -358,7 +358,9 @@ jobs:
- name: Enable compiler cache - name: Enable compiler cache
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ${{ env.CCACHE_DIR }} path:
/home/runner/.ccache
/Users/runner/.ccache
key: ccache-${{ matrix.name }}-${{ github.sha }} key: ccache-${{ matrix.name }}-${{ github.sha }}
restore-keys: | restore-keys: |
ccache-${{ matrix.name }}- ccache-${{ matrix.name }}-
@ -630,7 +632,9 @@ jobs:
- name: Enable compiler cache - name: Enable compiler cache
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ${{ env.CCACHE_DIR }} path: |
/home/runner/.ccache
/Users/runner/.ccache
key: v1-ccache-benchmarks-${{ github.sha }} key: v1-ccache-benchmarks-${{ github.sha }}
restore-keys: | restore-keys: |
v1-ccache-benchmarks- v1-ccache-benchmarks-
@ -646,6 +650,9 @@ jobs:
with: with:
ref: ${{ github.head_ref }} ref: ${{ github.head_ref }}
path: pr path: pr
- name: Prepare environment
run: |
echo "CCACHE_DIR=$HOME/.ccache" >> $GITHUB_ENV
- run: python3 -m pip install "conan<2.0.0" "requests==2.31.0" - run: python3 -m pip install "conan<2.0.0" "requests==2.31.0"
- name: Build PR Branch - name: Build PR Branch
run: | run: |