forked from pyimgui/pyimgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (42 loc) · 1.87 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
language: generic
dist: focal
os: linux
env:
global:
- secure: BOq8PDn3iGRFfvj44kxooFvi73CdGTLWparh/hZgPZOtVpaxPgmBRdowCy8CM Sw3UHzVx4bJtpoAVlC8HKsCHzm5RzJCPlZbLel6tFSLRpQ/P0pclbi7RJVX354xUq69hckX1NMLCzD4rrh2 nhIxN/CMW/EgaZX94 99/UUrSkyN2SnJ78 zrYRZZxtC/v1m8Q00jdS0raXYzGAh9SQuSnTf2C6nH9/oXykXmElUYGI52LoqmU3OIIWQNKNWH6vhlukuih3H5nycPm2dys8l8UxIji66pqmnyZRXsVq/5xqEYbxo493GPQQPQ2k4Zec4SOXaZ34ert4KSpK36MLSKJ59dou8 JK/yUwKeJQlHzpD5Qzwt Je/oU3RREPzhYLc7U1QnxiNlLa4YgcCfwurFGrWmFRLe TM2Ck6FuWi0LltGDNggFgox4I73v7odU5330qsh6Jz9aSsOsS8tc9V64jZdxiI8gK/azz0k4GI9EYpzpziFZEt3HrthVKXHrssonevUtRK8a 9Df/3cV9 KedAQarzkv7t4W61c1oA1XZHh45xUpE4x5T4mBIg Pa lPw748BQrLJ8zc5ZJj1g9jRGUTRlngQEy0MoWiyODzSc2VqDcLSsKbADeI73xxgq Fxl9Dih6cKedpxpoFlxPuAD1PgvwwxitPjrnnS8=
jobs:
include:
- os: linux
dist: trusty
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
services: docker
- os: linux
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686 PRE_CMD=linux32
services: docker
- os: linux
# note: this is only to properly annotate coverage build in the matrix
env: COVERAGE=1
language: python
# note: workaround to get Python 3.7
# see: https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
dist: focal
python: '3.8'
cache:
pip: true
before_install:
- source ci/travis_before.sh
install:
# simply for logging
- python --version
# get all submodules (imgui-cpp)
- git submodule update --init --recursive
script:
- ./ci/travis_build.sh
after_success:
# note: on certain environments there may be a problem with installing
# dropbox without virtualenv
- virtualenv dist-env
- source dist-env/bin/activate
- python -m pip install dropbox
# note: we upload dists only on master commits
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then python ci/dropbox_upload.py $(python setup.py --version); fi