diff options
author | John Fultz <jfultz@wolfram.com> | 2023-07-15 23:49:08 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2023-07-15 23:49:08 -0500 |
commit | 9fe15e565708b1efbf2dbc6b6f9dd19d89ff29da (patch) | |
tree | c67913a20845ca6a8081c170d592ec9447d0b0c1 /.github/workflows | |
parent | 6d1213ac9aace27f61f5fca24836bc89a75c6673 (diff) |
Remove caching from GitHub build action, which wasn’t working anyway.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 217b769..ee9d535 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,19 +83,11 @@ jobs: - name: Get latest CMake and ninja uses: lukka/get-cmake@latest - - name: Cache Qt - id: cache-qt - uses: actions/cache@v3 - with: - path: Qt - key: ${{ runner.os }}-${{ matrix.qt_ver }}-${{ matrix.qt_arch }}-Qt-cache - - name: Install Qt uses: jurplel/install-qt-action@v3 with: version: ${{ matrix.qt_ver }} arch: ${{ matrix.qt_arch }} - cached: ${{ steps.cache-qt.outputs.cache-hit }} - name: Add MSVC to path uses: ilammy/msvc-dev-cmd@v1 |