-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #260 from MediaPortal/MP1.33_Pre.Release_Test8
MP1-1.33 Pre: Release
- Loading branch information
Showing
280 changed files
with
16,186 additions
and
6,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @Azzuro @andrewjswan @doskabouter @epbk @Sebastiii |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
critical: | ||
- '(Critical|critical|Urgent|urgent)' | ||
enhancement: | ||
- '(Enhancement|enhancement)' | ||
Engine: | ||
- '(Core|core)' | ||
TV: | ||
- '(TV|TVE)' | ||
Tuning: | ||
- '(Tuning|tuning)' | ||
MPE: | ||
- 'MPE' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,68 +8,37 @@ on: | |
# Ignore all Tags / Release | ||
tags-ignore: | ||
- '**' | ||
|
||
workflow_call: | ||
inputs: | ||
retention-logs: | ||
description: "Retention Period for Log files. Default is 1" | ||
default: 3 | ||
required: false | ||
type: number | ||
retention-build: | ||
description: "Retention Period for Setup files. Default is 90" | ||
default: 3 | ||
required: false | ||
type: number | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
architecture: [x86, x64] | ||
|
||
name: Build Mediaportal | ||
|
||
runs-on: windows-2019 | ||
|
||
uses: ./.github/workflows/mediaportal.yml | ||
with: | ||
retention-logs: ${{ inputs.retention-logs || 3 }} | ||
retention-build: ${{ inputs.retention-build || 3 }} | ||
|
||
ci-status: | ||
name: Status | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
if: always() | ||
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@v4 | ||
with: | ||
java-version: 8 | ||
architecture: x86 | ||
distribution: temurin | ||
|
||
- name: Setup NSIS | ||
run: | | ||
choco install --yes nsis --version=3.08 --force | ||
- 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@v4 | ||
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@v4 | ||
if: ${{ success() }} | ||
with: | ||
name: Mediaportal setup file ${{ matrix.architecture }} | ||
path: | | ||
${{ github.workspace }}\Release\MediaPortalSetup_*.exe | ||
if-no-files-found: error | ||
retention-days: 3 | ||
- name: Success | ||
if: ${{ !(contains(needs.*.result, 'failure')) }} | ||
run: exit 0 | ||
- name: Failure | ||
if: ${{ contains(needs.*.result, 'failure') }} | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,69 +7,38 @@ on: | |
- 'MP1.**_Test**' | ||
# Ignore all Tags / Release | ||
tags-ignore: | ||
- '**' | ||
- '**' | ||
|
||
workflow_call: | ||
inputs: | ||
retention-logs: | ||
description: "Retention Period for Log files. Default is 1" | ||
default: 3 | ||
required: false | ||
type: number | ||
retention-build: | ||
description: "Retention Period for Setup files. Default is 90" | ||
default: 7 | ||
required: false | ||
type: number | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
architecture: [x86, x64] | ||
|
||
name: Build Mediaportal | ||
|
||
runs-on: windows-2019 | ||
|
||
uses: ./.github/workflows/mediaportal.yml | ||
with: | ||
retention-logs: ${{ inputs.retention-logs || 3 }} | ||
retention-build: ${{ inputs.retention-build || 7 }} | ||
|
||
ci-status: | ||
name: Status | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
if: always() | ||
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@v4 | ||
with: | ||
java-version: 8 | ||
architecture: x86 | ||
distribution: temurin | ||
|
||
- name: Setup NSIS | ||
run: | | ||
choco install --yes nsis --version=3.08 --force | ||
- 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@v4 | ||
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@v4 | ||
if: ${{ success() }} | ||
with: | ||
name: Mediaportal setup file ${{ matrix.architecture }} | ||
path: | | ||
${{ github.workspace }}\Release\MediaPortalSetup_*.exe | ||
if-no-files-found: error | ||
retention-days: 7 | ||
- name: Success | ||
if: ${{ !(contains(needs.*.result, 'failure')) }} | ||
run: exit 0 | ||
- name: Failure | ||
if: ${{ contains(needs.*.result, 'failure') }} | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: "Workflow / Pull Request Labeler" | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited] | ||
|
||
jobs: | ||
labeler: | ||
name: Add labels to Pull Request | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Add labels to Pull Request | ||
uses: github/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml | ||
enable-versioned-regex: 0 | ||
include-title: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "Workflow / Milestone" | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- closed | ||
|
||
jobs: | ||
add_on_open: | ||
name: Add Milestone on Open | ||
if: github.event.action == 'opened' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: benelan/milestone-action@v2 | ||
|
||
add_on_close: | ||
name: Add Milestone on Close / Merge | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: benelan/milestone-action@v2 | ||
with: | ||
overwrite: true # remove this line to keep existing milestone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.