-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (108 loc) · 3.38 KB
/
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: release-vr-volumeviewer
on:
push:
tags:
- '*'
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: Zip bin folder
run: |
cd superbuild\install_Windows
mv bin vr-volumeviewer
tar -a -c -f vr-volumeviewer-windows.zip .\vr-volumeviewer
- name: Upload app to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{github.workspace}}\superbuild\install_Windows\vr-volumeviewer-windows.zip
tag: ${{ github.ref }}
build_mac:
runs-on: macos-12
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: Zip bin folder
run: |
cd superbuild/install_Darwin
mv bin vr-volumeviewer
tar -a -c -f vr-volumeviewer-macos.zip ./vr-volumeviewer
- name: Upload app to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{github.workspace}}/superbuild/install_Darwin/vr-volumeviewer-macos.zip
tag: ${{ github.ref }}
build_linux:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install OpenGL support
run: sudo apt-get install libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev
shell: bash
- 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: Install Mesa Packages
run: |
sudo apt-get install build-essential libxmu-dev libxi-dev libgl-dev
- name: Configure CMake
run: |
cd superbuild
cmake -S . -B . -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: |
cd superbuild
make
- name: Zip bin folder
run: |
cd superbuild/install_Linux
mv bin vr-volumeviewer
tar -a -c -f vr-volumeviewer-linux.zip ./vr-volumeviewer
- name: Upload app to release - MacOS
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{github.workspace}}/superbuild/install_Linux/vr-volumeviewer-linux.zip
tag: ${{ github.ref }}