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.
|
-
- os: linux
- dist: bionic
-
- cache:
- directories:
- - ${HOME}/debs
-
- jobs:
- # linux native build
- - name: "Linux native"
- os: linux
- compiler: gcc
- dist: focal
- env:
- - TARGET="linux"
- services:
- - xvfb
-
- before_install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
-
- install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
-
- script:
- - make
- - make -C tests
|