mirror of
https://github.com/lightsoutgames/godot-tts
synced 2025-04-19 22:35:57 +00:00
Add 32 bits builds in CI
This commit is contained in:
parent
5abf6317ef
commit
b3b3d726f3
39
.github/workflows/release.yml
vendored
39
.github/workflows/release.yml
vendored
|
@ -2,8 +2,7 @@ name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
pull_request:
|
||||||
- "v*"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_linux:
|
build_linux:
|
||||||
|
@ -22,6 +21,23 @@ jobs:
|
||||||
name: linux
|
name: linux
|
||||||
path: linux
|
path: linux
|
||||||
|
|
||||||
|
build_linux_32:
|
||||||
|
name: Build Linux (32 bits)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
- run: |
|
||||||
|
sudo dpkg --add-architecture i386
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libspeechd-dev-i386
|
||||||
|
cargo build --release --target i686-unknown-linux-gnu
|
||||||
|
mv target linux
|
||||||
|
- uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: linux
|
||||||
|
path: linux
|
||||||
|
|
||||||
build_windows:
|
build_windows:
|
||||||
name: Build Windows
|
name: Build Windows
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
@ -39,6 +55,23 @@ jobs:
|
||||||
name: windows
|
name: windows
|
||||||
path: windows
|
path: windows
|
||||||
|
|
||||||
|
build_windows_32:
|
||||||
|
name: Build Windows (32 bits)
|
||||||
|
runs-on: windows-latest
|
||||||
|
env:
|
||||||
|
LIBCLANG_PATH: c:\program files\llvm\bin
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
- run: |
|
||||||
|
choco install -qy llvm
|
||||||
|
cargo build --release
|
||||||
|
move target windows
|
||||||
|
- uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: windows
|
||||||
|
path: windows
|
||||||
|
|
||||||
build_uwp:
|
build_uwp:
|
||||||
name: Build UWP
|
name: Build UWP
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
@ -160,7 +193,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref }}
|
tag_name: ${{ github.ref }}
|
||||||
release_name: Release ${{ github.ref }}
|
release_name: Release ${{ github.ref }}
|
||||||
draft: false
|
draft: true
|
||||||
prerelease: false
|
prerelease: false
|
||||||
- uses: actions/upload-release-asset@v1
|
- uses: actions/upload-release-asset@v1
|
||||||
id: upload-release-asset
|
id: upload-release-asset
|
||||||
|
|
Loading…
Reference in New Issue
Block a user