forked from nus-apr/cerberus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
58 lines (46 loc) · 823 Bytes
/
.travis.yml
File metadata and controls
58 lines (46 loc) · 823 Bytes
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
language: python
sudo: required
branches:
only:
- master
- dev
python:
- '3.8'
- '3.9'
- '3.10'
- 'pypy3'
matrix:
include:
- os: linux
dist: trusty
services:
- docker
cache:
directories:
- benchmark
git:
submodules: false
depth: 3
before_install:
- uname -a
- python --version
- docker version
- source activate
- docker pull yuntongzhang/vulnfix
install:
- git submodule update --init benchmark/vulnloc
- pip install --upgrade .
- pip install -r requirements.txt
jobs:
include:
- python: "2.7"
env: TEST_SUITE=suite_2_7
- python: "3.8"
env: TEST_SUITE=suite_3_8
- python: "pypy"
env: TEST_SUITE=suite_pypy
script:
- cerberus --help
- cerberus repair -t vulnfix -b vulnloc --bug-index 11
notifications:
email: true