-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into daniel/engine_desktop_build
- Loading branch information
Showing
7 changed files
with
214 additions
and
0 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,30 @@ | ||
name: Chromadeck Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-chromadeck-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'chromadeck' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorChromadeck.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorChromadeck.exe |
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,34 @@ | ||
name: Desktop Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-desktop-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: 'daniel/engine_desktop_build' | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'desktop' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorDesktop.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorDesktop.exe | ||
|
||
|
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,30 @@ | ||
name: Duo Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-duo-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'duo' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorDuo.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorDuo.exe |
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,30 @@ | ||
name: Gloves Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-gloves-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'gloves' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorGloves.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorGloves.exe |
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,30 @@ | ||
name: Handle Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-handle-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'handle' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorHandle.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorHandle.exe |
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,30 @@ | ||
name: Orbit Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-orbit-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'orbit' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorOrbit.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorOrbit.exe |
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,30 @@ | ||
name: Spark Emulator Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build-spark-emulator: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout Vortex Engine | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'StoneOrbits/VortexEngine' | ||
path: 'VortexTestingFramework/VortexEngine' | ||
ref: 'spark' | ||
- name: Set up MSBuild path | ||
uses: microsoft/setup-msbuild@v1 | ||
- name: Build | ||
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | ||
- name: Rename Binary | ||
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorSpark.exe | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Binaries | ||
path: x64/Release/VortexEmulatorSpark.exe |