Skip to content

Commit

Permalink
Add Qt mirror & cache Qt install
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-spataru authored Jan 19, 2021
1 parent 9209f63 commit 83a5359
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ jobs:
#
- name: Checkout repository
uses: actions/checkout@v2

#
# Cache Qt
#
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: ${{runner.os}}-QtCache

#
# Install Qt
Expand All @@ -46,6 +56,8 @@ jobs:
uses: jurplel/install-qt-action@v2
with:
modules: qtcharts
mirror: http://mirrors.ocf.berkeley.edu/qt/
cached: ${{steps.cache-qt.outputs.cache-hit}}

#
# Install additional dependencies, stolen from:
Expand Down

0 comments on commit 83a5359

Please sign in to comment.