-
Notifications
You must be signed in to change notification settings - Fork 150
87 lines (84 loc) · 2.6 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: OpenRV
on:
push:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
pull_request:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
jobs:
windows:
runs-on: windows-latest
# Strawberry perl is installed by default.
# Using aqt to install Qt 5.15.2 (latest binary release of Qt Op)
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Print Python location
run: dir C:\Users\runneradmin\.local\share\virtualenvs\
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2019_64'
dir: '${{ github.workspace }}/qt/'
# Linux option only - false for Windows
install-deps: 'false'
modules: 'debug_info qtcharts qtnetworkauth qtquick3d qtquicktimeline qtscript qtwebengine qtwebglplugin'
archives: 'd3dcompiler_47 opengl32sw qt3d qtactiveqt qtbase qtimageformats qtmultimedia qtquickcontrols qtquickcontrols2 qtscxml qtspeech qtsvg qttools qttranslations qtwebchannel qtwebsockets qtwebview qtwinextras qtxmlpatterns'
cache: 'false'
cache-key-prefix: 'install-qt-action'
setup-python: 'false'
tools: ''
set-env: 'true'
tools-only: 'false'
aqtversion: '==3.1.*'
- name: Display Qt directory
run: dir '${{ github.workspace }}/qt/'
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: >-
mingw-w64-x86_64-autotools
mingw-w64-x86_64-glew
mingw-w64-x86_64-libarchive
mingw-w64-x86_64-make
mingw-w64-x86_64-meson
mingw-w64-x86_64-toolchain
autoconf
automake
bison
flex
libtool
nasm
p7zip
patch
unzip
zip
- name: Setup PATH environment variable
shell: msys2 {0}
run: |
echo "export PATH=$PATH:C:/Users/runneradmin/.local/share/virtualenvs/3.10.11" >> ~/.bashrc
env:
MSYS2_PATH_TYPE: inherit
- name: Print PATH environment variable
shell: msys2 {0}
run: |
echo $PATH
- name: Print PATH environment variable
shell: msys2 {0}
run: |
where python