-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (38 loc) · 1.07 KB
/
ci.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
50
name: CI Ubuntu
env:
QT_VERSION: "5.15.2"
on:
workflow_dispatch:
push:
paths-ignore:
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libsamplerate-dev
sudo apt-get install -y fftw3-dev
sudo apt-get install -y alsa-base
sudo apt-get install -y dssi-dev
sudo apt-get install -y ladspa-sdk
sudo apt-get install -y libjack-dev
sudo apt-get install -y liblo-dev
sudo apt-get install -y liblrdf-dev
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: ${{ env.QT_VERSION }}
- uses: actions/checkout@v1
- name: Configure & Build
run: |
ls
export MAKEFLAGS="-j `nproc`"
mkdir build
cd build
echo "Running cmake"
cmake .. -DCMAKE_BUILD_TYPE=Debug
echo "Building"
make