forked from steinbergmedia/vstgui
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (25 loc) · 921 Bytes
/
cmake_linux.yml
File metadata and controls
32 lines (25 loc) · 921 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
name: Linux build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- run: sudo apt-get update
- run: sudo apt-get install libx11-dev libx11-xcb-dev libxcb-util-dev libxcb-cursor-dev libxcb-keysyms1-dev libxcb-xkb-dev libxkbcommon-dev libxkbcommon-x11-dev libfontconfig1-dev libcairo2-dev libfreetype6-dev libpango1.0-dev
- uses: ./.github/actions/cmake
with:
source-dir: '${{github.workspace}}'
build-dir: '${{github.workspace}}/build'
build-type: 'Debug'
build-vstgui-standalone: OFF
- uses: ./.github/actions/cmake
with:
source-dir: '${{github.workspace}}'
build-dir: '${{github.workspace}}/build-non-deprecated'
build-type: 'Debug'
build-vstgui-standalone: OFF
enable-deprecated-methods: OFF