mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-06 15:47:20 +02:00
29 lines
528 B
YAML
29 lines
528 B
YAML
dist: xenial
|
|
language: c
|
|
compiler: gcc
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- clang
|
|
- clang-format
|
|
- python3-pip
|
|
- python3-setuptools
|
|
- libsystemd-dev
|
|
- ninja-build
|
|
- libdbus-1-dev
|
|
artifacts:
|
|
paths:
|
|
- $(git ls-files -o | tr "\n" ":")
|
|
|
|
before_script:
|
|
- pip3 install wheel
|
|
- pip3 install --upgrade 'meson==0.52.0'
|
|
- meson --version
|
|
|
|
script:
|
|
- ./scripts/format-check.sh
|
|
- ./bootstrap.sh -Dwith-examples=true
|
|
- gamemoded -v
|
|
- ./scripts/static-analyser-check.sh
|