From e7fda437a64aa40242a070d2c3c9ac4b1534bc4a Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Fri, 30 Dec 2022 18:53:28 +0100 Subject: [PATCH] Debug emsdk caching --- .github/workflows/qt-wasm.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qt-wasm.yml b/.github/workflows/qt-wasm.yml index 672311dd..398433e8 100644 --- a/.github/workflows/qt-wasm.yml +++ b/.github/workflows/qt-wasm.yml @@ -18,7 +18,7 @@ jobs: - name: Setup cache id: cache-system-libraries - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: 'emsdk-cache' key: 'emsdk-1.39.8' @@ -28,6 +28,7 @@ jobs: with: version: 1.39.8 actions-cache-folder: 'emsdk-cache' + no-cache: true - name: Install Qt uses: jurplel/install-qt-action@43ec12788e42f375acfcb2cec059edfb9572fbaa # v3 @@ -40,10 +41,12 @@ jobs: - name: Build firebird run: | + du -sh emsdk-cache mkdir build cd build qmake .. make -j4 + du -sh emsdk-cache - name: Upload zip uses: actions/upload-artifact@v3