-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed macOS Intel build and other release prep
- Removed Android because the audio latency was too high, sorry :( - Adapted Android dist script for macOS - Quick pass over README, configs still need updating - Added release workflow to build and upload all the things - Sender and receiver can now be run together without port conflicts - Fixed vulns in the JS code
- Loading branch information
Showing
17 changed files
with
757 additions
and
505 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,142 @@ | ||
name: Build Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build-macos: | ||
runs-on: macos-12 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup dependencies | ||
run: | | ||
brew install openssl@3 | ||
brew install llvm@15 | ||
- name: Make dist | ||
run: ./make-macos-dist.sh | ||
|
||
- name: Upload build output | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-output-macos12 | ||
path: | | ||
waterslide-macos-x64-dist.tar.bz2 | ||
LICENSE | ||
build-macos-arm64: | ||
runs-on: macos-14 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup dependencies | ||
run: | | ||
brew install openssl@3 | ||
brew install llvm@15 | ||
- name: Make dist | ||
run: ./make-macos-dist.sh | ||
|
||
- name: Upload build output | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-output-macos-arm64 | ||
path: waterslide-macos-arm64-dist.tar.bz2 | ||
|
||
build-rpi: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Get RPi toolchain | ||
run: | | ||
wget https://github.com/sfjohnson/rpi-toolchain/releases/download/v0.1.8/aarch64-rpi4-linux-gnu.tar.xz | ||
tar xf aarch64-rpi4-linux-gnu.tar.xz -C ~ | ||
- name: Setup dependencies | ||
run: ./pull-deps.sh | ||
|
||
- name: Make RPi | ||
run: make -f rpi-arm64.mk | ||
env: | ||
TOOLCHAIN: /home/runner/aarch64-rpi4-linux-gnu | ||
|
||
- name: Upload build output | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-output-rpi | ||
path: bin/waterslide-rpi-arm64 | ||
|
||
build-discovery-server: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Build | ||
run: ./build-linux.sh | ||
working-directory: ./discovery-server | ||
|
||
- name: Create release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
tag_name: ${{ github.event.inputs.version }} | ||
files: ./discovery-server/waterslide-ds-linux | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload build output | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-output-ds | ||
path: ./discovery-server/waterslide-ds-linux | ||
|
||
create-release: | ||
runs-on: ubuntu-22.04 | ||
needs: [build-macos, build-macos-arm64, build-rpi, build-discovery-server] | ||
steps: | ||
- name: Get build output macos12 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-output-macos12 | ||
|
||
- name: Get build output macos-arm64 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-output-macos-arm64 | ||
|
||
- name: Get build output RPi | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-output-rpi | ||
|
||
- name: Get build output Discovery Server | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-output-ds | ||
|
||
- name: Create release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
waterslide-macos-x64-dist.tar.bz2 | ||
waterslide-macos-arm64-dist.tar.bz2 | ||
waterslide-rpi-arm64 | ||
waterslide-ds-linux | ||
LICENSE | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.