forked from improbable-eng/perforce-buildkite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (29 loc) · 862 Bytes
/
.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
---
# cache: pip # not enough installed via pip to justify
jobs:
include:
- os: linux
language: python
python: 3.6
# Disabled because this does not currently build successfully on MacOS due to p4python not getting along well with Python 3.9.
# - os: osx
# language: shell
# osx_image: xcode12u # macOS 10.15.5 Python 3.8.6
- os: windows
language: shell
before_install:
- choco install python3 --version 3.8.0
- ln -sf /c/Python38/python /c/Python38/python3
env:
PATH: /c/Python38:/c/Python38/Scripts:$PATH
before_install:
- python3 --version
- pip3 install -U pip
install:
- python3 -m pip install -r ./ci/requirements.txt
- python3 -m pip install -r ./python/requirements.txt
- ./ci/install_$TRAVIS_OS_NAME.sh
script:
- ./ci/test.sh
- ./ci/lint.sh
- make local_run