-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (84 loc) · 2.87 KB
/
build-release.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: build-release-vr-volumeviewer
on: workflow_dispatch
env:
BUILD_TYPE: Release
jobs:
build_windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: jwlawson/[email protected]
with:
cmake-version: '3.21.2'
- name: Clean superbuild folder
run: superbuild/clean/clean.bat
- name: Open superbuild folder
run: cd superbuild
- name: Configure CMake
run: |
cd superbuild
cmake -S . -B . -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G Ninja
- name: Build
run: |
cd superbuild
ninja
- name: clone bat2exe
run: |
cd superbuild
git clone https://github.com/islamadel/bat2exe.git
- name: Copy bat2exec script to create .exe
shell: cmd
run: copy superbuild\scripts\CCV_VR_VWR.bat superbuild\install_Windows\bin
- name: List files on bin folder
run: |
cd superbuild\install_Windows\bin
dir
- name: Copy MinVR plugins to root folder
shell: cmd
run: copy superbuild\install_Windows\bin\MinVR-2.0 superbuild\install_Windows\bin
- name: run bat2exec in the background and create vr-volumeviewer executable
shell: cmd
run: superbuild\scripts\execute_bat2exe_background.bat ${{github.workspace}}
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: download_vcresdristr.yml
name: vc_redist.x64.exe
# Optional, directory where to extract artifact. Defaults to the artifact name (see `name` input)
path: ${{github.workspace}}\superbuild\install_Windows\bin
- name: Building the installer
run: |
"%programfiles(x86)%\Inno Setup 6\iscc.exe" "superbuild\scripts\VolumeViewerInnoScript.iss"
shell: cmd
- uses: actions/upload-artifact@v2
with:
name: vvw-setup.exe
path: ${{github.workspace}}\superbuild\install_Windows\bin\vvw-setup.exe
- name: Test
working-directory: ${{github.workspace}}/superbuild/install_Windows/bin
run: ctest
# build_mac:
# runs-on: macos-11
# steps:
# - uses: actions/checkout@v2
# - name: Setup cmake
# uses: jwlawson/[email protected]
# with:
# cmake-version: '3.20.3'
# - name: Clean superbuild folder
# run: python3 superbuild/clean/clean.py
# - name: Open superbuild folder
# run: cd superbuild
# - name: Configure CMake
# run: |
# cd superbuild
# cmake -S . -B . -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
# - name: Build
# run: |
# cd superbuild
# make
# - name: Test
# working-directory: ${{github.workspace}}/superbuild/install_Darwin/bin
# run: ctest