mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
Update path for Qt to make caching work (#6281)
This commit is contained in:
parent
385ac3e386
commit
105deba056
3
.github/workflows/AppFwkUnitTest.yml
vendored
3
.github/workflows/AppFwkUnitTest.yml
vendored
@ -15,13 +15,14 @@ jobs:
|
||||
id: cache-qt
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ../Qt
|
||||
path: ${{ github.workspace }}/Qt/
|
||||
key: ${{ runner.os }}-QtCache
|
||||
- name: Install Qt
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
version: 5.9.9
|
||||
modules: qtscript
|
||||
dir: '${{ github.workspace }}/Qt/'
|
||||
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
||||
- name: Install Linux dependencies
|
||||
if: "contains( matrix.os, 'ubuntu')"
|
||||
|
5
.github/workflows/ResInsightWithCache.yml
vendored
5
.github/workflows/ResInsightWithCache.yml
vendored
@ -92,17 +92,18 @@ jobs:
|
||||
- name: Add buildcache to system path
|
||||
run: echo "::add-path::${{ github.workspace }}/bin"
|
||||
|
||||
- name: Cache Qt
|
||||
- name: Cache Qt
|
||||
id: cache-qt
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ../Qt
|
||||
path: ${{ github.workspace }}/Qt/
|
||||
key: ${{ matrix.config.os }}-QtCache-v02
|
||||
- name: Install Qt
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
version: 5.9.9
|
||||
modules: qtscript
|
||||
dir: '${{ github.workspace }}/Qt/'
|
||||
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user