Cache Qt for ResInsight

This commit is contained in:
Magne Sjaastad 2020-04-07 15:39:56 +02:00 committed by Gaute Lindkvist
parent f176f920d5
commit 46da0863b8

View File

@ -18,12 +18,18 @@ jobs:
uses: actions/checkout@v1 uses: actions/checkout@v1
with: with:
submodules: true submodules: true
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: ${{ runner.os }}-QtCache
- name: Install Qt - name: Install Qt
uses: jurplel/install-qt-action@v2.5.0 uses: jurplel/install-qt-action@v2
with: with:
version: 5.9.9 version: 5.9.9
modules: qtscript modules: qtscript
mirror: 'http://mirrors.ocf.berkeley.edu/qt/' cached: ${{ steps.cache-qt.outputs.cache-hit }}
- name: Install Python dependencies - name: Install Python dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip