Skip to content

Commit

Permalink
Update to Racket 6.6, change info.rkt to disable tests on the package…
Browse files Browse the repository at this point in the history
… server, update Travis.
  • Loading branch information
emina committed Jul 28, 2016
1 parent 2246107 commit 8f9b7f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ sudo: false
env:
global:
- RACKET_DIR=~/racket
- RACKET_URL="https://www.cs.utah.edu/plt/installers/6.4/racket-6.4-x86_64-linux-ubuntu-precise.sh"
- Z3_URL="https://github.com/emina/rosette/releases/download/v2.0/z3-d89c39cb-x64-ubuntu-12.04.zip"
- 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
Expand All @@ -14,10 +13,6 @@ before_install:
sh ./racket.sh --in-place --dest $RACKET_DIR;
else echo "using racket from cache"; fi
- export PATH="${RACKET_DIR}/bin:${PATH}"
- wget $Z3_URL -O z3.zip
- unzip z3.zip
- mkdir $TRAVIS_BUILD_DIR/bin && mv z3 $TRAVIS_BUILD_DIR/bin/
- rm z3.zip

install:
- raco pkg install
Expand Down
3 changes: 3 additions & 0 deletions info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
"rackunit-lib"
"slideshow-lib"
"base"))

(define build-deps '("pict-doc"
"scribble-lib"
"racket-doc"))

(define test-omit-paths (if (getenv "PLT_PKG_BUILD_SERVICE") 'all '()))

(define pkg-desc "Rosette solver-aided host language")
(define version "2.2")

0 comments on commit 8f9b7f9

Please sign in to comment.