Skip to content

Commit

Permalink
Add actions for automated building
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueCyro committed Aug 20, 2024
1 parent c32c53f commit 0a5af19
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build-linux-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build soundpipe for Linux & Windows
run-name: ${{ github.actor }} is building soundpipe
on:
push:
branches:
- master


jobs:
Build:
runs-on: ubuntu-latest


steps:
- name: Checkout
uses: actions/checkout@v4

- name: Create output directory variable
id: buildoutput
run: echo "build-output-dir=${{ github.workspace }}/OutputFiles" >> "$GITHUB_OUTPUT"

- name: Make output directory
run: mkdir ${{ steps.buildoutput.outputs.build-output-dir }}

- name: Install MinGW
run: sudo apt install -y mingw-w64

- name: Build for Linux
run: bash make_linux_shared.sh

- name: Move Linux library to output
run: mv libsoundpipe.so ${{ steps.buildoutput.outputs.build-output-dir }}

- name: Clean up Linux build
run: make clean

- name: Build for Windows
run: bash make_windows_shared.sh

- name: Move Windows library to output
run: mv libsoundpipe.dll ${{ steps.buildoutput.outputs.build-output-dir }}

- name: Pack it with a big red ribbon
uses: actions/upload-artifact@v4
with:
name: SoundPipe-Windows-Linux
path: ${{ steps.buildoutput.outputs.build-output-dir }}


0 comments on commit 0a5af19

Please sign in to comment.