File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ sudo : required
2
+ dist : trusty
3
+
4
+ language : python
5
+
6
+ python :
7
+ - " 2.7"
8
+
9
+ addons :
10
+ apt :
11
+ packages :
12
+ - doxygen
13
+ - cmake
14
+ - gdb
15
+
16
+ before_install :
17
+ - sudo apt-get update -qq
18
+ - sudo apt-get install -y ninja-build swig python-enchant
19
+
20
+ install :
21
+ - pip install -r requirements.txt
22
+
23
+ script :
24
+ # Make sure ssh user@localhost works (for qibuild deploy tests)
25
+ - bash -xe ci/setup-ssh.sh
26
+ - bash -xe ci/setup-git.sh
27
+ - make -C python
Original file line number Diff line number Diff line change
1
+ git config --global user.email
" [email protected] "
2
+ git config --global user.name " Travis CI"
Original file line number Diff line number Diff line change
1
+ # Making sure ssh user@localhost works
2
+ mkdir -p ~ /.ssh
3
+ ssh-keyscan -t rsa,dsa localhost >> ~ /.ssh/known_hosts
4
+ echo -e " \n\n\n" | ssh-keygen -t rsa -N " "
5
+ cat ~ /.ssh/id_rsa.pub >> ~ /.ssh/authorized_keys
You can’t perform that action at this time.
0 commit comments