-
Notifications
You must be signed in to change notification settings - Fork 218
66 lines (62 loc) · 1.63 KB
/
Ubuntu_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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Ubuntu CI
on:
push:
branches: [ master ]
paths-ignore:
- '.github/workflows/*.yml'
- '.github/ISSUE_TEMPLATE/*.md'
- 'build_scripts/**'
- 'cmudict/**'
- 'colorcurves/**'
- 'controllers/**'
- 'documentation/**'
- 'download/**'
- 'images/**'
- 'lib/windows/**'
- 'lib/windows64/**'
- 'meshobjects/**'
- 'palettes/**'
- 'scripts/**'
- 'songs/**'
- 'TipOfDay/**'
- 'valuecurves/**'
- '*.md'
- '*.yml'
- '*.txt'
- '*.docx'
- 'README.*'
pull_request:
branches: [ master ]
paths-ignore:
- '.github/workflows/*.yml'
- '.github/ISSUE_TEMPLATE/*.md'
- 'build_scripts/**'
- 'cmudict/**'
- 'colorcurves/**'
- 'controllers/**'
- 'documentation/**'
- 'download/**'
- 'images/**'
- 'meshobjects/**'
- 'palettes/**'
- 'scripts/**'
- 'songs/**'
- 'TipOfDay/**'
- 'valuecurves/**'
- '*.md'
- '*.yml'
- '*.txt'
- '*.docx'
- 'README.*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install g++ gcc build-essential libgtk-3-dev libunwind-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev freeglut3-dev libavcodec-dev libavformat-dev libswscale-dev libsdl2-dev libavutil-dev libportmidi-dev libzstd-dev libwebp-dev libcurl4-openssl-dev libltc-dev liblua5.3-dev wget git cbp2make
- name: Make
run: make -j 2