We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cde752 commit 8273a3aCopy full SHA for 8273a3a
1 file changed
.travis.yml
@@ -3,9 +3,18 @@ language: generic
3
sudo: true # Otherwise there seems to be no fuse available
4
dist: trusty
5
6
+env:
7
+ global:
8
+ - DISPLAY=:99
9
+
10
script:
- - sudo apt-get -y install libxml-xpath-perl # appstream
11
+ - sudo apt-get -y install libxml-xpath-perl xpra # appstream
12
+ - xpra start :99
13
+ - until xset -q; do echo "Waiting for X server to start..."; sleep 1; done
14
- # Find out which files in data/ have been changed in the last commit
15
- FILES=$(git log -1 -p data/ | grep +++ | cut -d '/' -f 2- | sed -e 's|dev/null||g')
16
- # Work on these files that have been changed in the last commit
17
- for FILE in $FILES ; do echo "$FILE" ; bash -e code/worker.sh $(readlink -f "$FILE") ; done
18
19
+after_script:
20
+ - "xpra stop :99"
0 commit comments