-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (21 loc) · 759 Bytes
/
Copy pathappveyor.yml
File metadata and controls
28 lines (21 loc) · 759 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
version: '{build}-{branch}'
branches:
only:
- master
skip_tags: true
image: Ubuntu2204
configuration: release
install:
- sh: |
echo "--- Installing dependencies ---"
sudo apt-get --assume-yes update
sudo apt-get --assume-yes install cmake pkg-config
sudo apt-get --assume-yes install libglfw3-dev
sudo apt-get --assume-yes install libjpeg-dev libpng-dev zlib1g-dev
sudo apt-get --assume-yes install liblcms2-dev libexif-dev libgif-dev libtiff-dev libwebp-dev libopenexr-dev libopenjp2-7-dev libheif-dev
echo "--- pkg-config glfw3 ---"
pkg-config --modversion glfw3 || echo "glfw3 not found by pkg-config"
dpkg -l | grep glfw || echo "no glfw packages installed"
platform: x64
build_script:
- sh: make -j release