Skip to content

Commit

Permalink
Separate workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
micbakos-rdx committed Feb 22, 2024
1 parent a55cdf6 commit 71599f1
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 77 deletions.
88 changes: 88 additions & 0 deletions .github/workflows/release-jvm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: CD JVM

on:
workflow_dispatch:
push:
branches:
- android

permissions:
id-token: write
contents: write
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUST_TOOLCHAIN: nightly-2024-01-11
RUST_COMPONENTS: "rust-std"
steps:
- uses: RDXWorks-actions/checkout@main

- name: Install Rust Toolchain for aarch64-linux-android
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: aarch64-linux-android

- name: Install Rust Toolchain for armv7-linux-androideabi
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: armv7-linux-androideabi

- name: Install Rust Toolchain for aarch64-apple-darwin
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: aarch64-apple-darwin

- name: Install Rust Toolchain for x86_64-apple-darwin
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: x86_64-apple-darwin

- name: Set up JDK 17
uses: RDXWorks-actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'

- name: Setup Android SDK
uses: RDXWorks-actions/setup-android@v2

- name: Setup Android NDK
uses: RDXWorks-actions/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r25b
link-to-sdk: true

- name: Setup Env Variables
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
echo "SARGON_VERSION=`git tag --sort=taggerdate | tail -1`" >> $GITHUB_ENV
- name: Build and publish Android
uses: RDXWorks-actions/gradle-build-action@main
with:
arguments: sargon-android:publish
build-root-directory: jvm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build and publish Desktop binaries
uses: RDXWorks-actions/gradle-build-action@main
with:
arguments: sargon-desktop-bins:publish
build-root-directory: jvm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

88 changes: 11 additions & 77 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CD
name: CD iOS

on:
workflow_dispatch:
Expand All @@ -21,97 +21,31 @@ jobs:
steps:
- uses: RDXWorks-actions/checkout@main

# - name: Install Rust Toolchain for x86_64-apple-ios
# uses: RDXWorks-actions/toolchain@master
# with:
# toolchain: ${{ env.RUST_TOOLCHAIN }}
# components: ${{ env.RUST_COMPONENTS }}
# target: x86_64-apple-ios

# - name: Install Rust Toolchain for aarch64-apple-ios
# uses: RDXWorks-actions/toolchain@master
# with:
# toolchain: ${{ env.RUST_TOOLCHAIN }}
# components: ${{ env.RUST_COMPONENTS }}
# target: aarch64-apple-ios

# - name: Install Rust Toolchain for aarch64-apple-ios-sim
# uses: RDXWorks-actions/toolchain@master
# with:
# toolchain: ${{ env.RUST_TOOLCHAIN }}
# components: ${{ env.RUST_COMPONENTS }}
# target: aarch64-apple-ios-sim

# - name: Run iOS build script
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# rustup target add x86_64-apple-ios aarch64-apple-ios aarch64-apple-ios-sim
# sh ./scripts/ios/release.sh

- name: Install Rust Toolchain for aarch64-linux-android
- name: Install Rust Toolchain for x86_64-apple-ios
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: aarch64-linux-android

- name: Install Rust Toolchain for armv7-linux-androideabi
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: armv7-linux-androideabi
target: x86_64-apple-ios

- name: Install Rust Toolchain for aarch64-apple-darwin
- name: Install Rust Toolchain for aarch64-apple-ios
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: aarch64-apple-darwin
target: aarch64-apple-ios

- name: Install Rust Toolchain for x86_64-apple-darwin
- name: Install Rust Toolchain for aarch64-apple-ios-sim
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: ${{ env.RUST_COMPONENTS }}
target: x86_64-apple-darwin

- name: Set up JDK 17
uses: RDXWorks-actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'

- name: Setup Android SDK
uses: RDXWorks-actions/setup-android@v2

- name: Setup Android NDK
uses: RDXWorks-actions/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r25b
link-to-sdk: true
target: aarch64-apple-ios-sim

- name: Setup Env Variables
- name: Run iOS build script
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "SARGON_VERSION=`git tag --sort=taggerdate | tail -1`" >> $GITHUB_ENV
- name: Build and publish Android
uses: RDXWorks-actions/gradle-build-action@main
with:
arguments: sargon-android:publish
build-root-directory: jvm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build and publish Desktop binaries
uses: RDXWorks-actions/gradle-build-action@main
with:
arguments: sargon-desktop-bins:publish
build-root-directory: jvm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
rustup target add x86_64-apple-ios aarch64-apple-ios aarch64-apple-ios-sim
sh ./scripts/ios/release.sh

0 comments on commit 71599f1

Please sign in to comment.