File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 27
27
run : mkdir build && cd build && cmake -G 'Unix Makefiles' -DMSH3_TOOL=on ..
28
28
- name : Build
29
29
run : cd build && cmake --build .
30
+ - name : Upload
31
+ uses : actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2
32
+ with :
33
+ name : bin-linux
34
+ path : |
35
+ build/**/*.so
36
+ build/**/msh3app
30
37
- name : Install
31
38
run : cd build && sudo cmake --install . --config Debug
32
39
- name : Run
45
52
run : mkdir build && cd build && cmake -G 'Visual Studio 17 2022' -A x64 -DMSH3_TOOL=on ..
46
53
- name : Build
47
54
run : cd build && cmake --build .
55
+ - name : Upload
56
+ uses : actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2
57
+ with :
58
+ name : bin-windows
59
+ path : |
60
+ build/**/*.dll
61
+ build/**/msh3app.exe
48
62
- name : Install
49
63
run : cd build && cmake --install . --config Debug
50
64
- name : Run
You can’t perform that action at this time.
0 commit comments