You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
725 B
25 lines
725 B
machine: |
|
timezone: America/Chicago |
|
|
|
dependencies: |
|
post: |
|
- sudo apt-get update |
|
- > |
|
sudo apt-get install -y |
|
libgtk-3-0 |
|
liblightdm-gobject-1-dev |
|
libdbus-glib-1-dev |
|
gnome-common |
|
python3-pip |
|
# use the repository from xenial to get libwebkit2gtk-4.0-dev |
|
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ yakkety main universe" |
|
- sudo apt-get update |
|
# ignore the error during the installation |
|
- sudo DEBIAN_FRONTEND=noninteractive apt-get install -y ninja-build libwebkit2gtk-4.0-dev || true |
|
- sudo pip3 install meson |
|
|
|
test: |
|
override: |
|
- cd build && meson.py --prefix=/usr .. |
|
- cd build && ninja |
|
- cd build && sudo ninja install
|
|
|