-
Notifications
You must be signed in to change notification settings - Fork 11
43 lines (41 loc) · 1.48 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
name: Continous Integration tests
on:
push:
paths-ignore:
- COPYING
- LICENSE
- README.md
pull_request:
paths-ignore:
- COPYING
- LICENSE
- README.md
jobs:
build:
name: Build Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Ubuntu system packages
run: |
sudo apt update
sudo apt-get install libopencolorio-dev libgl-dev libglu1-mesa-dev libmagick++-dev zlib1g-dev libwebp-dev \
liblcms2-dev libfontconfig1-dev libpango1.0-dev libxml2-dev libzip-dev librsvg2-dev libglib2.0-dev libfftw3-dev \
libpoppler-dev libpoppler-glib-dev libpoppler-private-dev librevenge-dev libcdr-dev libsox-dev libcairo-dev \
libcurl4-openssl-dev libbz2-dev libdjvulibre-dev libexif-dev libfreetype6-dev libjpeg-dev liblqr-1-0-dev \
libltdl-dev libopenexr-dev libopenjp2-7-dev libpng-dev libtiff-dev libwmf-dev libx11-dev libxext-dev libxt-dev
- name: Build (release)
run: |
make -j2 CONFIG=release
mkdir -p Bundle/ArenaPlugin
mv Bundle/Linux-64-release/Arena.ofx.bundle Bundle/ArenaPlugin
- name: Build (debug)
run: make -j2 CONFIG=debug
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: openfx-arena-build-ubuntu_22-release
path: Bundle/ArenaPlugin