forked from openai/procgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
72 lines (66 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
before_script:
- $PIP --version
- $PIP install -e procgen-build
jobs:
include:
- name: "Linux Development"
os: linux
language: python
python: 3.7
sudo: required
script: python -u -m procgen_build.dev_test
env:
- PIP=pip
- name: "Linux Package"
os: linux
dist: bionic # Ubuntu 18.04 LTS, the packages are built inside docker so this doesn't affect much
language: python
python: 3.7
sudo: required
services:
- docker
script: python -u -m procgen_build.build_package
env:
- PIP=pip
- name: "Mac Development"
os: osx
osx_image: xcode11.2 # MacOS X 10.14 (https://docs.travis-ci.com/user/reference/osx/#macos-version)
language: generic
before_install:
- curl https://pyenv.run | bash
- pyenv install 3.7.5
- pyenv global 3.7.5
script: python -u -m procgen_build.dev_test
env:
- PIP=pip3
- PATH=/Users/travis/.pyenv/shims:$PATH
- name: "Mac Package"
os: osx
osx_image: xcode11.2
language: generic
before_install:
- curl https://pyenv.run | bash
- pyenv install 3.7.5
- pyenv global 3.7.5
script: python3 -u -m procgen_build.build_package
env:
- PIP=pip3
- PATH=/Users/travis/.pyenv/shims:$PATH
- name: "Windows Development"
os: windows
language: shell
before_install:
- choco install python3 --version 3.7.5 --no-progress --yes
env:
- PIP=pip
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
script: python -u -m procgen_build.dev_test
- name: "Windows Package"
os: windows
language: shell
before_install:
- choco install python3 --version 3.7.5 --no-progress --yes
env:
- PIP=pip
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
script: python -u -m procgen_build.build_package