Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit 1d889da

Browse files
authoredMay 12, 2018
Various fixes (#1)
* fix pistache c++ server in windows * skip perl test * comment out go tests * Fix go test, manually fix go client * fix rails batch file * fix tab in java file * install rust * fix swift2-deprecated in windows batch file * fix rust installation * comment out js test * update swift windows batch files * update tizen batch script * comment out ktor test
1 parent bc20483 commit 1d889da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+430
-826
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,6 @@ samples/server/petstore/erlang-server/rebar.lock
205205
samples/client/petstore/dart/petstore/packages
206206
samples/client/petstore/dart/flutter_petstore/test/packages
207207
samples/client/petstore/dart/petstore/test/packages
208+
209+
## JS
210+
samples/client/petstore/javascript/package-lock.json

‎.travis.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ cache:
2424
- $HOME/samples/client/petstore/typescript-fetch/npm/with-npm-version/typings
2525
- $HOME/samples/client/petstore/typescript-angular/node_modules
2626
- $HOME/samples/client/petstore/typescript-angular/typings
27+
- $HOME/perl5
2728

2829
services:
2930
- docker
@@ -34,6 +35,8 @@ addons:
3435
- petstore.swagger.io
3536

3637
before_install:
38+
# install rust
39+
- curl -sSf https://static.rust-lang.org/rustup.sh | sh
3740
# required when sudo: required for the Ruby petstore tests
3841
- gem install bundler
3942
- npm install -g typescript
@@ -51,8 +54,8 @@ before_install:
5154
- sudo apt-get install -qq bats
5255
- sudo apt-get install -qq curl
5356
# install perl module
54-
- cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
55-
- cpanm Test::Exception Test::More Log::Any LWP::UserAgent JSON URI:Query Module::Runtime DateTime Module::Find Moose::Role
57+
#- cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
58+
#- cpanm Test::Exception Test::More Log::Any LWP::UserAgent JSON URI:Query Module::Runtime DateTime Module::Find Moose::Role
5659
# comment out below as installation failed in travis
5760
# Add rebar3 build tool and recent Erlang/OTP for Erlang petstore server tests.
5861
# - Travis CI does not support rebar3 [yet](https://github.com/travis-ci/travis-ci/issues/6506#issuecomment-275189490).

0 commit comments

Comments
 (0)