Skip to content

Commit

Permalink
customer restore and save
Browse files Browse the repository at this point in the history
  • Loading branch information
glhewett committed Sep 9, 2023
1 parent 5f4df72 commit baa0e9b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ env:

jobs:
formatting-check:
if: github.event.pull_request.draft == false
name: Formatting Check
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -56,7 +57,8 @@ jobs:
sudo apt-get install -y linux-headers-$(uname -r)
- name: Restore cache
uses: actions/cache@v3
id: restore-cache
uses: actions/cache/restore@v3
with:
path: ${{ github.workspace }}/build/cache
key: VCPKG-BinaryCache-${{ runner.os }}
Expand Down Expand Up @@ -98,6 +100,14 @@ jobs:
run: |
cmake --build "${{ env.CMAKE_BUILD_OPENSSL3_DIR }}" --target test
- name: Save cache
id: save-cache
uses: actions/cache/save@v3
if: always()
with:
path: ${{ github.workspace }}/build/cache
key: VCPKG-BinaryCache-${{ runner.os }}

platform-sanitizer-tests:
if: github.event.pull_request.draft == false
needs: quick-linux-interop-check
Expand Down

0 comments on commit baa0e9b

Please sign in to comment.