-
Notifications
You must be signed in to change notification settings - Fork 200
73 lines (68 loc) · 2.11 KB
/
Win.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
name: Win
on:
push:
branches:
- DemoApp
paths-ignore:
- 'cmake/**'
- '.github/**'
- 'doc/**'
- 'samples/**'
jobs:
App_Win32_Dirent_FS:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: DemoApp
- name: checkout submodules
run : git submodule update --init --recursive
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON
- name: build
run: cmake --build build --config Release
- name: ctest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Win32_Dirent_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe
App_Win32_Std_FS:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: DemoApp
- name: checkout submodules
run : git submodule update --init --recursive
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON -DUSE_STD_FILESYSTEM=ON
- name: build
run: cmake --build build --config Release
- name: ctest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Win32_Std_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe
App_Win32_Boost_FS:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: DemoApp
- name: checkout submodules
run : git submodule update --init --recursive
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON -DUSE_BOOST_DEMO_FILESYSTEM=ON
- name: build
run: cmake --build build --config Release
- name: ctest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Win32_Boost_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe