forked from PokemonAutomation/Arduino-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (82 loc) · 2.92 KB
/
cpp-ci-serial-programs.yml
File metadata and controls
86 lines (82 loc) · 2.92 KB
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
name: C++ CI Serial Programs
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
qt_version: ['5.12.12', '6.2.2']
include:
- os: windows-latest
host: windows
cmake_args: '-G "Visual Studio 17 2022"'
- os: windows-latest
qt_version: '5.12.12'
qt_arch: win64_msvc2017_64
qt_arch_path: msvc2017_64
- os: windows-latest
qt_version: '6.2.2'
qt_arch: win64_msvc2019_64
qt_arch_path: msvc2019_64
- os: macos-latest
host: mac
cmake_args:
qt_arch: clang_64
- os: macos-latest
qt_version: '5.12.12'
qt_arch_path: clang_64
- os: macos-latest
qt_version: '6.2.2'
qt_arch_path: macos
- qt_version: '5.12.12'
qt_version_major: '5'
qt_modules:
- qt_version: '6.2.2'
qt_version_major: '6'
qt_modules: -m qtmultimedia qtserialport
steps:
- uses: actions/checkout@v2
with:
path: Arduino-Source
- uses: actions/checkout@v2
with:
repository: 'PokemonAutomation/Packages'
path: Packages
- name: Add msbuild to PATH
if: startsWith(matrix.os, 'windows')
uses: ilammy/msvc-dev-cmd@v1
- name: Install Qt
run: |
python3 -m pip install aqtinstall
python3 -m aqt install-qt ${{ matrix.host }} desktop ${{ matrix.qt_version }} ${{ matrix.qt_arch }} ${{ matrix.qt_modules }}
- name: Run cmake
run: |
cd Arduino-Source/SerialPrograms
mkdir bin
cd bin
cmake .. -DCMAKE_PREFIX_PATH=${{ github.workspace }}/${{ matrix.qt_version }}/${{ matrix.qt_arch_path }} -DQT_MAJOR:STRING=${{ matrix.qt_version_major }} ${{ matrix.cmake_args }}
- name: Generate binaries
if: startsWith(matrix.os, 'windows')
run: |
cd Arduino-Source/SerialPrograms/bin
MSBuild.exe ./SerialPrograms.vcxproj /p:Configuration=Release /p:Platform=x64
- name: Generate binaries
if: startsWith(matrix.os, 'macos')
run: |
cd Arduino-Source/SerialPrograms/bin
cmake --build . -j 10
- name: Copy resources
if: startsWith(matrix.os, 'windows')
run: |
robocopy Packages/SerialPrograms/Resources Output/Resources /s
robocopy Packages/PABotBase/PABotBase-Switch Output/PABotBase /s
robocopy Arduino-Source/SerialPrograms/bin Output/Binaries libcrypto-1_1-x64.dll libssl-1_1-x64.dll Sleepy.dll tesseractPA.dll
robocopy Arduino-Source/SerialPrograms/bin/Release Output/Binaries SerialPrograms.exe
exit 0
- uses: actions/upload-artifact@v2
if: startsWith(matrix.os, 'windows')
with:
name: Serial Programs for windows (${{ matrix.qt_version }})
path: Output