-
Notifications
You must be signed in to change notification settings - Fork 147
75 lines (62 loc) · 1.85 KB
/
mediaportal_test_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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Mediaportal / Test Build
on:
push:
# On Push to Pre Release / Final Test branch
branches:
- 'MP1.**_Test**'
# Ignore all Tags / Release
tags-ignore:
- '**'
workflow_call:
jobs:
build:
strategy:
matrix:
architecture: [x86, x64]
name: Build Mediaportal
runs-on: windows-2019
steps:
- name: Setup Visual Studio 2019
uses: microsoft/[email protected]
with:
vs-version: 16.11
- name: Link to Visual Studio 2019 Community
run: |
mklink /J "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community" "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
shell: cmd
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
java-version: 8
architecture: x86
distribution: temurin
- name: Setup NSIS
run: |
choco install --yes nsis --version=3.08
- name: Git Checkout
uses: actions/checkout@v3
- name: Git Submodule Update
run: |
git submodule update --init --recursive
- name: Build
run: |
BuildFullinstaller.cmd LOG ${{ matrix.architecture }}
working-directory: ${{ github.workspace }}\Build
shell: cmd
- name: Upload Artifact / Build result file
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: Build result file ${{ matrix.architecture }}
path: |
${{ github.workspace }}\Build\BuildFullInstaller.log
retention-days: 3
- name: Upload Artifact / Mediaportal setup file
uses: actions/upload-artifact@v3
if: ${{ success() }}
with:
name: Mediaportal setup file ${{ matrix.architecture }}
path: |
${{ github.workspace }}\Release\MediaPortalSetup_*.exe
if-no-files-found: error
retention-days: 7