Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Cache pFUnit
id: pfunit-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: pfunit-prefix
key: pfunit-linux-${{ inputs.arch }}-v4.9.0-${{ hashFiles('.github/workflows/build-linux.yml') }}
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Cache Hamlib
id: hamlib-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: hamlib-prefix
key: hamlib-linux-${{ inputs.arch }}-${{ inputs.hamlib_branch }}-${{ hashFiles('.github/workflows/build-linux.yml') }}
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Restore Qt cache
id: qt-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: qt-prefix
key: ${{ steps.qt-key.outputs.key }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:

- name: Cache libusb
id: libusb-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: libusb-prefix
key: libusb-macos-${{ inputs.arch }}-${{ inputs.runner }}-1.0.27-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-libusb-macos.sh') }}
Expand All @@ -188,14 +188,14 @@ jobs:
- name: Save libusb cache
if: steps.libusb-cache.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: libusb-prefix
key: libusb-macos-${{ inputs.arch }}-${{ inputs.runner }}-1.0.27-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-libusb-macos.sh') }}

- name: Cache Hamlib
id: hamlib-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: hamlib-prefix
key: hamlib-macos-${{ inputs.arch }}-${{ inputs.runner }}-${{ inputs.hamlib_branch }}-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-hamlib-macos.sh') }}
Expand All @@ -213,14 +213,14 @@ jobs:
- name: Save Hamlib cache
if: steps.hamlib-cache.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: hamlib-prefix
key: hamlib-macos-${{ inputs.arch }}-${{ inputs.runner }}-${{ inputs.hamlib_branch }}-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-hamlib-macos.sh') }}

- name: Cache PortAudio
id: portaudio-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: portaudio-prefix
key: portaudio-macos-${{ inputs.arch }}-${{ inputs.runner }}-19.7.0-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-portaudio-macos.sh') }}
Expand All @@ -236,14 +236,14 @@ jobs:
- name: Save PortAudio cache
if: steps.portaudio-cache.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: portaudio-prefix
key: portaudio-macos-${{ inputs.arch }}-${{ inputs.runner }}-19.7.0-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-portaudio-macos.sh') }}

- name: Cache FFTW
id: fftw-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: fftw-prefix
key: fftw-macos-${{ inputs.arch }}-${{ inputs.runner }}-3.3.10-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-fftw-macos.sh') }}
Expand All @@ -259,14 +259,14 @@ jobs:
- name: Save FFTW cache
if: steps.fftw-cache.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: fftw-prefix
key: fftw-macos-${{ inputs.arch }}-${{ inputs.runner }}-3.3.10-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-fftw-macos.sh') }}

- name: Cache Boost
id: boost-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: boost-prefix
key: boost-macos-${{ inputs.arch }}-${{ inputs.runner }}-1.85.0-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-boost-macos.sh') }}
Expand All @@ -283,7 +283,7 @@ jobs:
- name: Save Boost cache
if: steps.boost-cache.outputs.cache-hit != 'true'
continue-on-error: true
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: boost-prefix
key: boost-macos-${{ inputs.arch }}-${{ inputs.runner }}-1.85.0-min${{ inputs.deployment_target }}-${{ hashFiles('.github/scripts/build-boost-macos.sh') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Cache pFUnit
id: pfunit-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: pfunit-prefix
key: pfunit-windows-v4.9.0-${{ hashFiles('.github/workflows/build-windows.yml') }}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:

- name: Cache Hamlib
id: hamlib-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: hamlib-prefix
key: hamlib-windows-${{ inputs.hamlib_branch }}-${{ hashFiles('.github/workflows/build-windows.yml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare-macos-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Restore Qt cache
id: qt-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: qt-prefix
key: ${{ needs.qt-cache-key.outputs.key }}
Expand All @@ -67,7 +67,7 @@ jobs:

- name: Save Qt cache
if: steps.qt-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: qt-prefix
key: ${{ needs.qt-cache-key.outputs.key }}