-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
da05de2
commit 30f8b19
Showing
13 changed files
with
672 additions
and
22 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,60 @@ | ||
on: | ||
push: | ||
branches: [] | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install latest nightly | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
target: wasm32-unknown-unknown | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
target | ||
key: cache-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }} | ||
restore-keys: | | ||
cache-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }} | ||
cache-${{ runner.os }}-cargo | ||
|
||
- name: Install wasm-bindgen-cli | ||
run: cargo install wasm-bindgen-cli | ||
|
||
- name: Run build | ||
run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo build --profile wasm-release --target wasm32-unknown-unknown | ||
- name: WASM | ||
run: wasm-bindgen --out-dir out/ --target web ./target/wasm32-unknown-unknown/release/Flower.wasm | ||
- name: Copy Assets | ||
run: | | ||
cp -r assets out/. | ||
|
||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: 'out' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
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,230 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
env: | ||
# update with the name of the main binary | ||
binary: Simulation | ||
add_binaries_to_github_release: true | ||
#itch_target: <itch.io-username>/<game-name> | ||
|
||
|
||
jobs: | ||
# Build for Linux | ||
release-linux: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: olegtarasov/get-tag@v2.1.2 | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-unknown-linux-gnu | ||
toolchain: 1.73.0 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
|
||
- name: install dependencies | ||
run: | | ||
sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | ||
- name: Build | ||
run: | | ||
cargo build --release --target x86_64-unknown-linux-gnu | ||
- name: Prepare package | ||
run: | | ||
mkdir linux | ||
cp target/x86_64-unknown-linux-gnu/release/${{ env.binary }} linux/ | ||
cp -r assets linux/ | ||
- name: Package as a zip | ||
working-directory: ./linux | ||
run: | | ||
zip --recurse-paths ../${{ env.binary }}.zip . | ||
- name: Upload binaries to artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.binary }}.zip | ||
name: linux | ||
retention-days: 1 | ||
|
||
- name: Upload binaries to release | ||
if: ${{ env.add_binaries_to_github_release == 'true' }} | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.binary }}.zip | ||
asset_name: ${{ env.binary }}-linux-${{ steps.get_version.outputs.tag }}.zip | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
# Build for Windows | ||
release-windows: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: olegtarasov/get-tag@v2.1.2 | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-pc-windows-msvc | ||
toolchain: 1.73.0 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
|
||
- name: Build | ||
run: | | ||
cargo build --release --target x86_64-pc-windows-msvc | ||
- name: Build Horizon Ui | ||
run: | | ||
cd .\horizon-ui | ||
./gradlew obfuscate | ||
cd .. | ||
- name: Prepare package | ||
run: | | ||
mkdir windows | ||
cp target/x86_64-pc-windows-msvc/release/${{ env.binary }}.exe windows/ | ||
cp -r assets windows/ | ||
cp .\horizon-ui\build\compose\jars\horizon-ui-windows-x64-1.0.0.min.jar windows/horizon-ui.jar | ||
- name: Package as a zip | ||
run: | | ||
Compress-Archive -Path windows/* -DestinationPath ${{ env.binary }}.zip | ||
- name: Upload binaries to artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.binary }}.zip | ||
name: windows | ||
retention-days: 1 | ||
|
||
- name: Upload binaries to release | ||
if: ${{ env.add_binaries_to_github_release == 'true' }} | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.binary }}.zip | ||
asset_name: ${{ env.binary }}-windows-${{ steps.get_version.outputs.tag }}.zip | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
# Build for MacOS x86_64 | ||
release-macOS-intel: | ||
runs-on: macOS-latest | ||
|
||
steps: | ||
- uses: olegtarasov/get-tag@v2.1.2 | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-apple-darwin | ||
toolchain: 1.73.0 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Environment Setup | ||
run: | | ||
export CFLAGS="-fno-stack-check" | ||
export MACOSX_DEPLOYMENT_TARGET="10.9" | ||
- name: Build | ||
run: | | ||
cargo build --release --target x86_64-apple-darwin | ||
- name: Prepare Package | ||
run: | | ||
mkdir -p ${{ env.binary }}.app/Contents/MacOS | ||
cp target/x86_64-apple-darwin/release/${{ env.binary }} ${{ env.binary }}.app/Contents/MacOS/ | ||
cp -r assets ${{ env.binary }}.app/Contents/MacOS/ | ||
hdiutil create -fs HFS+ -volname "${{ env.binary }}" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-intel.dmg | ||
- name: Upload binaries to artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.binary }}-macOS-intel.dmg | ||
name: macOS-intel | ||
retention-days: 1 | ||
|
||
- name: Upload binaries to release | ||
if: ${{ env.add_binaries_to_github_release == 'true' }} | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.binary }}-macOS-intel.dmg | ||
asset_name: ${{ env.binary }}-macOS-intel-${{ steps.get_version.outputs.tag }}.dmg | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
# Build for MacOS Apple Silicon | ||
release-macOS-apple-silicon: | ||
runs-on: macOS-latest | ||
|
||
steps: | ||
- uses: olegtarasov/get-tag@v2.1.2 | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: aarch64-apple-darwin | ||
toolchain: 1.73.0 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Environment | ||
# macOS 11 was the first version to support ARM | ||
run: | | ||
export MACOSX_DEPLOYMENT_TARGET="11" | ||
- name: Build | ||
run: | | ||
cargo build --release --target aarch64-apple-darwin | ||
- name: Prepare Package | ||
run: | | ||
mkdir -p ${{ env.binary }}.app/Contents/MacOS | ||
cp target/aarch64-apple-darwin/release/${{ env.binary }} ${{ env.binary }}.app/Contents/MacOS/ | ||
cp -r assets ${{ env.binary }}.app/Contents/MacOS/ | ||
hdiutil create -fs HFS+ -volname "${{ env.binary }}-macOS-apple-silicon" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-apple-silicon.dmg | ||
- name: Upload binaries to artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.binary }}-macOS-apple-silicon.dmg | ||
name: macOS-apple-silicon | ||
retention-days: 1 | ||
|
||
- name: Upload binaries to release | ||
if: ${{ env.add_binaries_to_github_release == 'true' }} | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ env.binary }}-macOS-apple-silicon.dmg | ||
asset_name: ${{ env.binary }}-macOS-apple-silicon-${{ steps.get_version.outputs.tag }}.dmg | ||
tag: ${{ github.ref }} | ||
overwrite: true |
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,53 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
# update with the name of the main binary | ||
binary: Simulation | ||
#itch_target: <itch.io-username>/<game-name> | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
# Build for wasm | ||
release-wasm: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: olegtarasov/get-tag@v2.1.2 | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: wasm32-unknown-unknown | ||
toolchain: 1.73.0 | ||
- name: install wasm-bindgen-cli | ||
run: | | ||
cargo install wasm-bindgen-cli --version 0.2.87 | ||
- name: Build | ||
run: | | ||
cargo build --release --target wasm32-unknown-unknown | ||
- name: Prepare package | ||
run: | | ||
wasm-bindgen --no-typescript --out-name Simulation --out-dir wasm --target web target/wasm32-unknown-unknown/release/${{ env.binary }}.wasm | ||
cp -r assets wasm/ | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: 'wasm' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
Oops, something went wrong.