2020-04-11 18:33:50 +00:00
|
|
|
name: Release
|
2020-04-11 18:14:00 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-04-12 01:57:06 +00:00
|
|
|
tags:
|
2020-08-14 13:37:11 +00:00
|
|
|
- "v*"
|
2020-04-11 18:14:00 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_linux:
|
|
|
|
name: Build Linux
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-08-14 13:37:11 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libspeechd-dev
|
2020-08-18 15:48:04 +00:00
|
|
|
cargo build --release
|
2020-08-14 13:37:11 +00:00
|
|
|
mv target linux
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: linux
|
|
|
|
path: linux
|
2020-04-11 18:15:48 +00:00
|
|
|
|
2020-04-11 18:14:00 +00:00
|
|
|
build_windows:
|
|
|
|
name: Build Windows
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2020-08-14 13:37:11 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: |
|
|
|
|
choco install -y llvm
|
2020-08-18 15:48:04 +00:00
|
|
|
cargo build --release
|
2020-08-14 13:37:11 +00:00
|
|
|
move target windows
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: windows
|
|
|
|
path: windows
|
|
|
|
|
|
|
|
build_macos:
|
|
|
|
name: Build MacOS
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: |
|
|
|
|
cargo build --release
|
|
|
|
mv target macos
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: macos
|
|
|
|
path: macos
|
2020-04-11 18:14:00 +00:00
|
|
|
|
2020-08-18 15:48:04 +00:00
|
|
|
build_android:
|
|
|
|
name: Build Android
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
lfs: true
|
|
|
|
- run: |
|
|
|
|
./gradlew assemble
|
|
|
|
mv build android
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: android
|
|
|
|
path: android
|
|
|
|
|
2020-08-21 16:16:18 +00:00
|
|
|
build_ios:
|
|
|
|
name: Build iOS
|
2020-08-18 20:59:27 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: |
|
|
|
|
rustup target add aarch64-apple-ios x86_64-apple-ios
|
|
|
|
cargo install cargo-lipo
|
|
|
|
cargo lipo --release
|
|
|
|
mv target ios
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: ios
|
|
|
|
path: ios
|
|
|
|
|
2020-04-11 18:14:00 +00:00
|
|
|
package:
|
|
|
|
name: Package
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-18 20:59:27 +00:00
|
|
|
needs: [build_linux, build_windows, build_macos, build_android, build_ios]
|
2020-04-11 18:14:00 +00:00
|
|
|
steps:
|
2020-08-14 13:37:11 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: linux
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: windows
|
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: macos
|
2020-08-18 15:48:04 +00:00
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: android
|
2020-08-18 20:59:27 +00:00
|
|
|
- uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: ios
|
2020-08-14 13:37:11 +00:00
|
|
|
- run: |
|
|
|
|
mkdir godot-tts
|
|
|
|
cp godot-tts.gdnlib.release godot-tts/godot-tts.gdnlib
|
2020-08-18 15:48:04 +00:00
|
|
|
cp godot-tts.gdap godot-tts/
|
2020-08-14 13:37:11 +00:00
|
|
|
mkdir -p godot-tts/target/release
|
|
|
|
cp linux/release/*.so godot-tts/target/release
|
|
|
|
cp windows/release/*.dll godot-tts/target/release
|
|
|
|
cp macos/release/*.dylib godot-tts/target/release
|
2020-08-18 16:02:02 +00:00
|
|
|
cp android/outputs/aar/godot-tts.aar godot-tts/
|
2020-08-18 20:59:27 +00:00
|
|
|
cp ios/universal/release/*.a godot-tts/target/release
|
2020-08-14 13:37:11 +00:00
|
|
|
cp LICENSE godot-tts
|
|
|
|
cp README.md godot-tts
|
|
|
|
cp TTS.gd godot-tts.g* godot-tts
|
|
|
|
cp godot-tts.gdnlib.release godot-tts/godot-tts.gdnlib
|
|
|
|
rm godot-tts/*.release
|
|
|
|
zip -r9 godot-tts godot-tts
|
|
|
|
- uses: actions/create-release@v1
|
|
|
|
id: create_release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
|
|
|
release_name: Release ${{ github.ref }}
|
|
|
|
draft: false
|
|
|
|
prerelease: false
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
|
|
id: upload-release-asset
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./godot-tts.zip
|
|
|
|
asset_name: godot-tts.zip
|
|
|
|
asset_content_type: application/zip
|