-
Notifications
You must be signed in to change notification settings - Fork 8
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
2 changed files
with
43 additions
and
4 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,42 @@ | ||
name: build-release | ||
run-name: Build release | ||
on: [push] | ||
|
||
jobs: | ||
build-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Set short git commit SHA | ||
id: vars | ||
run: | | ||
echo "COMMIT_SHORT_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV | ||
- uses: actions/setup-python@v5 | ||
- name: install-deps | ||
run: | | ||
# install scons | ||
python -c "import sys; print(sys.version)" | ||
python -m pip install scons==4.4.0 | ||
scons --version | ||
# install windows deps | ||
sudo apt-get install mingw-w64 | ||
sudo update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix | ||
sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix | ||
# download steamaudio | ||
curl -LO https://github.com/ValveSoftware/steam-audio/releases/download/v4.5.3/steamaudio_4.5.3.zip | ||
unzip steamaudio_4.5.3.zip 'steamaudio/lib/**/*' -d src/lib | ||
cp src/lib/steamaudio/lib/linux-x64/* project/addons/godot-steam-audio/ | ||
cp src/lib/steamaudio/lib/windows-x64/* project/addons/godot-steam-audio/ | ||
- name: build-ext | ||
run: | | ||
make release | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: godot-steam-audio-${{ env.COMMIT_SHORT_SHA }} | ||
path: ${{ github.workspace }}/godot-steam-audio/ | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: godot-steam-audio-demo-${{ env.COMMIT_SHORT_SHA }} | ||
path: ${{ github.workspace }}/godot-steam-audio-demo/ |
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