-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (34 loc) · 1.5 KB
/
build-linux-windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 }}