Remove Photino launcher from CI
This commit is contained in:
parent
97fdb68899
commit
37dec439ae
4 changed files with 0 additions and 334 deletions
21
.github/workflows/LANCommander.Development.yml
vendored
21
.github/workflows/LANCommander.Development.yml
vendored
|
|
@ -124,19 +124,6 @@ jobs:
|
|||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_win_x64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-x64
|
||||
build_arch: x64
|
||||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
# 3) FINALIZE: if changes == 'true', gather artifacts + push Docker:development
|
||||
# --------------------------------------------------------------------------
|
||||
|
|
@ -145,7 +132,6 @@ jobs:
|
|||
- prep
|
||||
- build_server_linux_x64
|
||||
- build_server_win_x64
|
||||
- build_launcher_win_x64
|
||||
if: needs.prep.outputs.changed == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
@ -247,12 +233,6 @@ jobs:
|
|||
name: LANCommander.Server-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Windows x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Delete existing release assets
|
||||
uses: dev-drprasad/delete-tag-and-release@v1.1
|
||||
with:
|
||||
|
|
@ -270,6 +250,5 @@ jobs:
|
|||
files: |
|
||||
artifacts/LANCommander.Server-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Server-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
120
.github/workflows/LANCommander.Nightly.yml
vendored
120
.github/workflows/LANCommander.Nightly.yml
vendored
|
|
@ -177,84 +177,6 @@ jobs:
|
|||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_linux_arm64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Linux
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_linux_x64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-x64
|
||||
build_arch: x64
|
||||
build_platform: Linux
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_osx_arm64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-arm64
|
||||
build_arch: arm64
|
||||
build_platform: macOS
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_osx_x64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-x64
|
||||
build_arch: x64
|
||||
build_platform: macOS
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_win_arm64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_win_x64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-x64
|
||||
build_arch: x64
|
||||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_avalonia_linux_arm64:
|
||||
needs: [prep]
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
|
|
@ -345,12 +267,6 @@ jobs:
|
|||
- build_server_osx_x64
|
||||
- build_server_win_arm64
|
||||
- build_server_win_x64
|
||||
- build_launcher_linux_arm64
|
||||
- build_launcher_linux_x64
|
||||
- build_launcher_osx_arm64
|
||||
- build_launcher_osx_x64
|
||||
- build_launcher_win_arm64
|
||||
- build_launcher_win_x64
|
||||
if: needs.prep.outputs.changed == 'true' && github.repository_owner == 'LANCommander'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
@ -492,42 +408,6 @@ jobs:
|
|||
name: LANCommander.Server-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Linux ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Linux-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Linux x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher macOS ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-macOS-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher macOS x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-macOS-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Windows ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Windows-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Windows x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Avalonia Linux ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
|
|
|
|||
72
.github/workflows/LANCommander.PR.yml
vendored
72
.github/workflows/LANCommander.PR.yml
vendored
|
|
@ -128,78 +128,6 @@ jobs:
|
|||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_linux_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Linux
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_linux_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-x64
|
||||
build_arch: x64
|
||||
build_platform: Linux
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_osx_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-arm64
|
||||
build_arch: arm64
|
||||
build_platform: macOS
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_osx_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-x64
|
||||
build_arch: x64
|
||||
build_platform: macOS
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_win_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_win_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-x64
|
||||
build_arch: x64
|
||||
build_platform: Windows
|
||||
build_configuration: Debug
|
||||
|
||||
build_launcher_avalonia_linux_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.Avalonia.yml
|
||||
|
|
|
|||
121
.github/workflows/LANCommander.Release.yml
vendored
121
.github/workflows/LANCommander.Release.yml
vendored
|
|
@ -116,79 +116,6 @@ jobs:
|
|||
build_platform: Windows
|
||||
build_configuration: Release
|
||||
|
||||
# Launcher
|
||||
build_launcher_linux_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Linux
|
||||
build_configuration: Release
|
||||
|
||||
build_launcher_linux_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: linux-x64
|
||||
build_arch: x64
|
||||
build_platform: Linux
|
||||
build_configuration: Release
|
||||
|
||||
build_launcher_osx_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-arm64
|
||||
build_arch: arm64
|
||||
build_platform: macOS
|
||||
build_configuration: Release
|
||||
|
||||
build_launcher_osx_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: osx-x64
|
||||
build_arch: x64
|
||||
build_platform: macOS
|
||||
build_configuration: Release
|
||||
|
||||
build_launcher_win_arm64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-arm64
|
||||
build_arch: arm64
|
||||
build_platform: Windows
|
||||
build_configuration: Release
|
||||
|
||||
build_launcher_win_x64:
|
||||
needs: [prep]
|
||||
uses: ./.github/workflows/LANCommander.Launcher.yml
|
||||
with:
|
||||
build_dotnet_version: ${{ needs.prep.outputs.build_dotnet_version }}
|
||||
version_semver: ${{ needs.prep.outputs.version_semver }}
|
||||
version_tag: ${{ needs.prep.outputs.version_tag }}
|
||||
build_runtime: win-x64
|
||||
build_arch: x64
|
||||
build_platform: Windows
|
||||
build_configuration: Release
|
||||
|
||||
# Avalonia Launcher
|
||||
build_launcher_avalonia_linux_x64:
|
||||
needs: [prep]
|
||||
|
|
@ -248,12 +175,6 @@ jobs:
|
|||
- build_server_osx_x64
|
||||
- build_server_win_arm64
|
||||
- build_server_win_x64
|
||||
- build_launcher_linux_arm64
|
||||
- build_launcher_linux_x64
|
||||
- build_launcher_osx_arm64
|
||||
- build_launcher_osx_x64
|
||||
- build_launcher_win_arm64
|
||||
- build_launcher_win_x64
|
||||
- build_launcher_avalonia_linux_x64
|
||||
- build_launcher_avalonia_osx_arm64
|
||||
- build_launcher_avalonia_osx_x64
|
||||
|
|
@ -299,42 +220,6 @@ jobs:
|
|||
name: LANCommander.Server-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Linux ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Linux-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Linux x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher macOS ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-macOS-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher macOS x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-macOS-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Windows ARM64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Windows-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
- name: Download Launcher Windows x64
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: LANCommander.Launcher-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
path: artifacts
|
||||
|
||||
# Avalonia Launcher artifacts
|
||||
- name: Download Avalonia Launcher Linux x64
|
||||
uses: actions/download-artifact@v4
|
||||
|
|
@ -378,12 +263,6 @@ jobs:
|
|||
artifacts/LANCommander.Server-Linux-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Server-macOS-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Server-macOS-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-Windows-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-Windows-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-Linux-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-macOS-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher-macOS-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher.Avalonia-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher.Avalonia-macOS-arm64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
artifacts/LANCommander.Launcher.Avalonia-macOS-x64-v${{ needs.prep.outputs.version_tag }}.zip
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue