forked from ReFirmLabs/binwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (45 loc) · 850 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
os: linux
dist: bionic
language: python
arch: amd64
addons:
apt:
update: true
install:
- export PYTHON=$(which python3)
- ./deps.sh --yes
- sudo -E $PYTHON -mpip install coverage
- sudo -E $PYTHON ./setup.py install
script:
- export PYTHON=$(which python3)
- sudo -E $PYTHON ./setup.py test
jobs:
include:
- stage: test
services: docker
install: echo "No install for this job"
script: docker build .
- stage: test
dist: bionic
python: 3.6
- stage: test
dist: bionic
python: 3.7
- stage: test
dist: bionic
python: 3.8
- stage: test
dist: bionic
python: 3.9
- stage: test
dist: focal
python: 3.6
- stage: test
dist: focal
python: 3.7
- stage: test
dist: focal
python: 3.8
- stage: test
dist: focal
python: 3.9