File tree Expand file tree Collapse file tree 4 files changed +71
-19
lines changed
Expand file tree Collapse file tree 4 files changed +71
-19
lines changed Original file line number Diff line number Diff line change 66# http://docs.travis-ci.com/user/migrating-from-legacy
77sudo : false
88cache : bundler
9+ addons :
10+ apt :
11+ packages :
12+ - tree
913before_install :
1014 - rvm install 2.2.1
1115 - rvm use 2.2.1
1216
1317script :
14- - bin/journey-setup.sh
18+ - bin/journey-setup-ci .sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ eval " $( curl -sL https://raw.githubusercontent.com/travis-ci/gimme/master/gimme | GIMME_GO_VERSION=1.5.3 bash) "
4+ go version
5+
6+ git clone https://github.com/exercism/x-api
7+ cd x-api
8+ git submodule init -- metadata
9+ git submodule init -- tracks/java
10+ git submodule update
11+
12+ gem install bundler
13+ bundle install
14+
15+ RACK_ENV=development rackup&
16+
17+ sleep 5
18+
19+ export HOME=$HOME /build/bronhuston
20+ export GOPATH=$HOME
21+ export PATH=$PATH :$GOPATH /bin
22+ go get -u github.com/exercism/cli/exercism
23+ exercism -v
24+
25+ cd ~
26+ pwd
27+ mkdir -p workspace/exercism/exercises
28+ cd ~ /workspace/exercism/exercises
29+ exercism configure --dir=~ /workspace/exercism/exercises
30+ exercism configure --api http://localhost:9292
31+
32+ curl -v ' localhost:9292/v2/exercises/java/bob'
33+ exercism --verbose debug
34+ exercism --verbose fetch java bob
35+ tree java
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ git clone https://github.com/exercism/x-api
4+ cd x-api
5+ git submodule init -- metadata
6+ git submodule init -- tracks/java
7+ git submodule update
8+
9+ gem install bundler
10+ bundle install
11+
12+ RACK_ENV=development rackup&
13+
14+ sleep 5
15+
16+ export GOPATH=$HOME /workspace
17+ export PATH=$PATH :$GOPATH /bin
18+ go get -u github.com/exercism/cli/exercism
19+ exercism -v
20+
21+ cd ~
22+ mkdir -p workspace/exercism/exercises
23+ cd ~ /workspace/exercism/exercises
24+ exercism configure --dir=~ /workspace/exercism/exercises
25+ exercism configure --api http://localhost:9292
26+
27+ curl -v ' localhost:9292/v2/exercises/java/bob'
28+
29+ exercism --verbose debug
30+ exercism --verbose fetch java bob
31+ tree java
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments