32 lines
439 B
YAML
32 lines
439 B
YAML
dist: focal
|
|
|
|
language: c
|
|
|
|
cache:
|
|
- pip
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- shellcheck
|
|
- valgrind
|
|
- gcc
|
|
- clang
|
|
- python-docutils
|
|
- python3-pip
|
|
- python3-setuptools
|
|
- ninja-build
|
|
- meson
|
|
- python3-pytest
|
|
- libglib2.0-dev
|
|
|
|
install: test/travis-install.sh
|
|
|
|
jobs:
|
|
include:
|
|
- name: Lint
|
|
script: ./test/lint.sh
|
|
install: skip
|
|
- name: Build + Test
|
|
script: test/travis-build.sh
|