Skip to content

MP1-1.33 Pre-Test1: Fixed SQL database download filename (32/64bit ba… #39

MP1-1.33 Pre-Test1: Fixed SQL database download filename (32/64bit ba…

MP1-1.33 Pre-Test1: Fixed SQL database download filename (32/64bit ba… #39

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@v4
- 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