forked from skylersaleh/SkyEmu
-
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.
- Loading branch information
Showing
12 changed files
with
346 additions
and
175 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
name: Build Linux | ||
on: [push,pull_request] | ||
on: [push] | ||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/[email protected] | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
|
@@ -15,7 +16,7 @@ jobs: | |
run: | | ||
mkdir build | ||
cd build | ||
cmake .. && cmake --build . | ||
cmake -DBUILD_HYDRA_CORE=1 .. && cmake --build . | ||
- name: GH Release 🚀 | ||
# You may pin to the exact commit or the version. | ||
|
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 |
---|---|---|
@@ -1,30 +1,23 @@ | ||
name: Build macOS | ||
on: [push,pull_request] | ||
on: [push] | ||
jobs: | ||
build-and-deploy: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/[email protected] | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Configure & Build 🔧 | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. && cmake --build . | ||
- name: Build DMG | ||
run: | | ||
cd build | ||
brew install graphicsmagick imagemagick | ||
npm install --global create-dmg | ||
create-dmg --dmg-title=SkyEmu 'bin/SkyEmu.app' || true | ||
ls | ||
mv SkyEmu*.dmg "SkyEmu.dmg" | ||
cmake -DBUILD_HYDRA_CORE=1 .. && cmake --build . | ||
- name: GH Release 🚀 | ||
# You may pin to the exact commit or the version. | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: MacOSRelease | ||
path: build/SkyEmu.dmg | ||
path: build/libSkyEmu.dylib | ||
#uses: softprops/[email protected] | ||
#with: | ||
# # Note-worthy description of changes in release | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
name: Build Windows | ||
on: [push,pull_request] | ||
on: [push] | ||
jobs: | ||
build-and-deploy: | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/[email protected] | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Get latest CMake and ninja | ||
# Using 'latest' branch, the most recent CMake and ninja are installed. | ||
uses: lukka/get-cmake@latest | ||
|
@@ -14,7 +15,7 @@ jobs: | |
run: | | ||
mkdir build | ||
cd build | ||
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 .. | ||
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 -DBUILD_HYDRA_CORE=1 .. | ||
cmake --build . --config Release | ||
- name: GH Release 🚀 | ||
|
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,3 @@ | ||
[submodule "src/hydra/core"] | ||
path = src/hydra/core | ||
url = https://github.com/hydra-emu/core |
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.