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.
|
- language: cpp
-
- os: linux
-
- dist: focal
-
- cache:
- directories:
- - ${HOME}/PawPawBuilds/builds
- - ${HOME}/PawPawBuilds/debs
- - ${HOME}/PawPawBuilds/downloads
- - ${HOME}/PawPawBuilds/targets/macos
- - ${HOME}/PawPawBuilds/targets/win32
- - ${HOME}/PawPawBuilds/targets/win64
-
- env:
- global:
- - BOOTSTRAP_VERSION=1
-
- jobs:
- # linux with win32 cross-compilation
- - os: linux
- compiler: gcc
- env:
- - TARGET="win32"
- services:
- - xvfb
-
- # linux with win64 cross-compilation
- - os: linux
- compiler: gcc
- env:
- - TARGET="win64"
- services:
- - xvfb
-
- # macOS native build
- - os: osx
- compiler: gcc
- env:
- - TARGET="macos"
-
- before_install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
-
- install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
-
- script:
- - bash ${TRAVIS_BUILD_DIR}/PawPaw/bootstrap-plugins.sh ${TARGET}
- - bash ${TRAVIS_BUILD_DIR}/PawPaw/.cleanup.sh ${TARGET}
|