Skip to content

Commit

Permalink
Set up APT cache
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer authored Nov 6, 2024
1 parent 6a9c602 commit a4dec09
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,15 @@ jobs:
echo "CMAKE_ARGS_EXTRA=${CMAKE_ARGS_EXTRA} -DAPPLE_CODESIGN_IDENTITY=${APPLE_CODESIGN_IDENTITY}" >> "${GITHUB_ENV}"
echo "APPLE_CODESIGN_IDENTITY=${APPLE_CODESIGN_IDENTITY}" >> $GITHUB_ENV
- name: "[Ubuntu] Set up APT cache"
if: runner.os == 'Linux'
uses: actions/cache@v4
with:
path: /var/cache/apt/archives/*.deb
key: ${{ matrix.os }}
restore-keys: |
${{ matrix.os }}
- name: "[macOS/Linux] Set up build environment"
if: matrix.buildenv_script != null && runner.os != 'Windows'
run: ${{ matrix.buildenv_script }} setup
Expand Down

0 comments on commit a4dec09

Please sign in to comment.