mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-13 07:15:06 +00:00
ci: Update cache version
This commit is contained in:
parent
ceb21cc386
commit
5d177ffaf0
1 changed files with 4 additions and 4 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -15,7 +15,7 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CACHE_VERSION: 2
|
CACHE_VERSION: "2022-08-19"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -175,7 +175,7 @@ jobs:
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: "${{ github.workspace }}/build/qt"
|
path: "${{ github.workspace }}/build/qt"
|
||||||
key: "${{ matrix.runner }}-obsdeps${{ steps.info.outputs.obs_deps_version }}-qt${{ matrix.qt }}"
|
key: "${{ matrix.runner }}-obsdeps${{ steps.info.outputs.obs_deps_version }}-qt${{ matrix.qt }}-${{ env.CACHE_VERSION }}"
|
||||||
- name: "Dependency: Qt "
|
- name: "Dependency: Qt "
|
||||||
id: qt
|
id: qt
|
||||||
if: ${{ startsWith( matrix.runner, 'ubuntu' ) || (steps.qt-cache.outputs.cache-hit != 'true') }}
|
if: ${{ startsWith( matrix.runner, 'ubuntu' ) || (steps.qt-cache.outputs.cache-hit != 'true') }}
|
||||||
|
@ -205,7 +205,7 @@ jobs:
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: "${{ github.workspace }}/build/obsdeps"
|
path: "${{ github.workspace }}/build/obsdeps"
|
||||||
key: "${{ matrix.runner }}-obsdeps${{ steps.info.outputs.obs_deps_version }}"
|
key: "${{ matrix.runner }}-obsdeps${{ steps.info.outputs.obs_deps_version }}-${{ env.CACHE_VERSION }}"
|
||||||
- name: "Dependency: OBS Dependencies (FFmpeg, CURL, ...)"
|
- name: "Dependency: OBS Dependencies (FFmpeg, CURL, ...)"
|
||||||
id: obsdeps
|
id: obsdeps
|
||||||
if: ${{ startsWith( matrix.runner, 'ubuntu' ) || (steps.obsdeps-cache.outputs.cache-hit != 'true') }}
|
if: ${{ startsWith( matrix.runner, 'ubuntu' ) || (steps.obsdeps-cache.outputs.cache-hit != 'true') }}
|
||||||
|
@ -230,7 +230,7 @@ jobs:
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: "${{ github.workspace }}/build/obs"
|
path: "${{ github.workspace }}/build/obs"
|
||||||
key: "${{ matrix.runner }}-${{ matrix.generator }}-obs${{ steps.info.outputs.obs_version }}-obsdeps${{ steps.info.outputs.obs_deps_version }}-qt${{ matrix.qt }}"
|
key: "${{ matrix.runner }}-${{ matrix.generator }}-obs${{ steps.info.outputs.obs_version }}-obsdeps${{ steps.info.outputs.obs_deps_version }}-qt${{ matrix.qt }}-${{ env.CACHE_VERSION }}"
|
||||||
- name: "Dependency: OBS Libraries"
|
- name: "Dependency: OBS Libraries"
|
||||||
id: obs
|
id: obs
|
||||||
if: ${{ steps.obs-cache.outputs.cache-hit != 'true' }}
|
if: ${{ steps.obs-cache.outputs.cache-hit != 'true' }}
|
||||||
|
|
Loading…
Reference in a new issue