Skip to content

Commit

Permalink
reenable caching
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-ce committed Jan 5, 2025
1 parent 2459894 commit c13c28d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,15 @@ jobs:
echo "QT_SRC_CONFIGURE=$(pwd)/qt_src/configure" >> $GITHUB_ENV
echo "QT_LITE_CONFIG=$(pwd)/misc/qt_lite.txt" >> $GITHUB_ENV
# - name: Cache Qt WebAssembly build
# id: qt-cache
# uses: actions/cache@v4
# with:
# path: qt_wasm_lite
# key: ${{ matrix.config }}_qt-${{ env.QT_VERSION }}_emcc-${{ env.WEBASSEMBLY_VERSION }}
- name: Cache Qt WebAssembly build
id: qt-cache
uses: actions/cache@v4
with:
path: qt_wasm_lite
key: ${{ matrix.config }}_qt-${{ env.QT_VERSION }}_emcc-${{ env.WEBASSEMBLY_VERSION }}

- name: Download and patch Qt
#if: steps.qt-cache.outputs.cache-hit != 'true'
if: steps.qt-cache.outputs.cache-hit != 'true'
shell: bash
run: |
git clone --branch $QT_VERSION git://code.qt.io/qt/qt5.git qt_src
Expand All @@ -233,7 +233,7 @@ jobs:
- name: Build Qt for Webassembly (custom version)
#if: steps.qt-cache.outputs.cache-hit != 'true'
if: steps.qt-cache.outputs.cache-hit != 'true'
shell: bash
run: |
cd qt_wasm_build
Expand Down

0 comments on commit c13c28d

Please sign in to comment.