-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (48 loc) · 1.26 KB
/
ccpp-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
name: Windows Build
on:
push:
branches:
- main
- feature/*
- bugfix/*
- develop
- bugfix/*
pull_request:
branches: [ develop ]
schedule:
- cron: '0 0 17 * *'
jobs:
build:
if: false
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: update submodules
run: git submodule update --init --recursive --remote
- name: configure
run: cmake -DCMAKE_BUILD_TYPE=Release ..
working-directory: build
env:
WM_DOWNLOAD_EXTERNALS: 1
- name: install render test requirements
run: pip3 install -r requirements.txt
working-directory: rendertests
- name: build
run: cmake --build . --config Release
working-directory: build
- name: test
run: ./rehearse
working-directory: build/Release
- name: run rendertests
run: python runtests.py
continue-on-error: false
working-directory: rendertests
- name: pack
run: cmake --build . --config Release --target package
working-directory: build
- uses: actions/upload-artifact@v4
with:
name: werckmeister-win-${{ github.sha }}
path: |
build/werckmeister-*-win64.msi
rendertests/*.mid