forked from emina/rosette
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (24 loc) · 698 Bytes
/
.travis.yml
File metadata and controls
29 lines (24 loc) · 698 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
language: java
sudo: false
env:
global:
- RACKET_DIR=~/racket
- RACKET_URL="https://mirror.racket-lang.org/installers/6.6/racket-6.6-x86_64-linux.sh"
before_install:
- if [[ ! -e "$RACKET_DIR/bin/racket" ]]; then
rm -rf $RACKET_DIR;
curl -L -o racket.sh $RACKET_URL;
sh ./racket.sh --in-place --dest $RACKET_DIR;
else echo "using racket from cache"; fi
- export PATH="${RACKET_DIR}/bin:${PATH}"
install:
- raco pkg install
script:
- raco test
- time raco make test/all-rosette-tests.rkt
- raco test test/all-rosette-tests.rkt
- time raco make test/all-sdsl-tests.rkt
- raco test test/all-sdsl-tests.rkt
cache:
directories:
- $RACKET_DIR