-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 1.22 KB
/
build.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
name: build_release
# Workflow file for windows
on:
push:
branches:
- main
pull_request: {}
jobs:
Windows:
name: build-windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive
#Use setup-cpp to setup C++ environment (CMake and GCC, adds both to PATH)
- name: Setup Cpp (C++ / C)
uses: aminya/[email protected]
with:
compiler: ${{ matrix.compiler }}
vcvarsall: ${{ contains(matrix.os, 'windows' )}}
gcc: true
cmake: true
# Add MSBuild to PATH since setup-cpp doesn't do that for dome reason
- name: Add msbuild to PATH
uses: microsoft/[email protected]
# Configure CMake
- name: Running cmake (windows)
run: |
cd ${{ github.workspace }}
mkdir build
cd build
cmake ../ -DCMAKE_GENERATOR_PLATFORM=Win32
# Build sln file
- name: Build Solution (windows)
run: |
cd build
MSBuild.exe Fuser_CustomSongCreator.sln
# Upload Artifact
- name: Upload production-ready build files
uses: actions/upload-artifact@v3
with:
name: Nightly-Debug-Build
path: ./build/Debug