-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (39 loc) · 983 Bytes
/
linux.yml
File metadata and controls
48 lines (39 loc) · 983 Bytes
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
name: linux
on:
pull_request:
push:
release:
types: published
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
buildtype: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libglx-dev libgl1-mesa-dev
sudo apt-get install -y qt6-base-dev
sudo apt-get install -y libqt6opengl6-dev
- name: Configure FSStudio
run: |
cmake -B build -G "Unix Makefiles"
- name: Build FSStudio
run: |
cd build
make
- name: Pack FSStudio
run: |
cd build
make package
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: FSStudio-${{ matrix.buildtype }}
path: ./build/FSStudio-0.1.0-Linux.tar.*