-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Implement macOS as a build target"
This reverts commit 1620b37. After some initial testing - it was found that Rosetta stores it's application translation files in a temporary directory that PLRPC couldn't write to. While this is a problem, the underlying issue is with the updater, as it attempts to write a manifest file to the working directory of the application. Seeing as this can't be done, it was determined that changes to the updater should be made before macOS support be implemented. Reopening #36.
- Loading branch information
Showing
5 changed files
with
9 additions
and
78 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 |
---|---|---|
|
@@ -48,36 +48,25 @@ jobs: | |
run: dotnet publish -c Release -r win-x64 --self-contained PLRPC.CLI | ||
- name: Publish CLI for Linux x64 | ||
run: dotnet publish -c Release -r linux-x64 --self-contained PLRPC.CLI | ||
- name: Publish CLI for macOS x64 | ||
run: dotnet publish -c Release -r osx-x64 --self-contained PLRPC.CLI | ||
- name: Publish GUI for Windows x64 | ||
run: dotnet publish -c Release -r win-x64 --self-contained PLRPC.GUI.Windows | ||
- name: Publish GUI for Linux x64 | ||
run: dotnet publish -c Release -r linux-x64 --self-contained PLRPC.GUI.Linux | ||
- name: Publish GUI for macOS x64 | ||
run: dotnet publish -c Release -r osx-x64 --self-contained PLRPC.GUI.MacOS | ||
|
||
- name: Upload Windows x64 CLI build | ||
uses: actions/[email protected] | ||
with: | ||
name: PLRPC CLI Windows x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.CLI/bin/Release/net7.0/win-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
name: PLRPC CLI Windows x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.CLI/bin/Release/net7.0/win-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
- name: Upload Linux x64 CLI build | ||
uses: actions/[email protected] | ||
with: | ||
name: PLRPC CLI Linux x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.CLI/bin/Release/net7.0/linux-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
- name: Upload macOS x64 CLI build | ||
uses: actions/[email protected] | ||
with: | ||
name: PLRPC CLI macOS x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.CLI/bin/Release/net7.0/osx-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
name: PLRPC CLI Linux x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.CLI/bin/Release/net7.0/linux-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
- name: Upload Windows x64 GUI build | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -91,11 +80,4 @@ jobs: | |
name: PLRPC GUI Linux x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.GUI.Linux/bin/Release/net7.0/linux-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 | ||
- name: Upload macOS x64 GUI build | ||
uses: actions/[email protected] | ||
with: | ||
name: PLRPC GUI macOS x64 [${{ steps.hash.outputs.hash }}] | ||
path: "/home/runner/work/PLRPC/PLRPC/PLRPC.GUI.MacOS/bin/Release/net7.0/osx-x64/publish/" | ||
if-no-files-found: error | ||
retention-days: 3 |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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