File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ commands: # a reusable command with parameters
59
59
# This is a broad list of cache paths to include many possible development environments
60
60
# You can probably delete some of these entries
61
61
- vendor/bundle
62
+ - ~/.nvm
63
+ - ~/.pyenv
62
64
- ~/virtualenvs
63
65
- ~/.m2
64
66
- ~/.ivy2
@@ -78,6 +80,8 @@ commands: # a reusable command with parameters
78
80
# This is a broad list of cache paths to include many possible development environments
79
81
# You can probably delete some of these entries
80
82
- vendor/bundle
83
+ - ~/.nvm
84
+ - ~/.pyenv
81
85
- ~/virtualenvs
82
86
- ~/.m2
83
87
- ~/.ivy2
Original file line number Diff line number Diff line change @@ -75,22 +75,14 @@ elif [ "$NODE_INDEX" = "3" ]; then
75
75
mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node3 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
76
76
77
77
elif [ " $NODE_INDEX " = " 4" ]; then
78
-
79
78
echo " Running node $NODE_INDEX to test 'samples.circleci.node4' defined in pom.xml ..."
80
79
81
- # install maven and java so we can use them to run our tests
82
- apt-get update && apt-get install -y default-jdk maven sudo
83
- java -version
84
- export JAVA_HOME=$( readlink -f /usr/bin/java | sed " s:bin/java::" )
85
- echo $JAVA_HOME
86
- # show os version
87
- uname -a
88
-
89
- mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node4 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
80
+ # mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node4 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
81
+ (cd samples/openapi3/client/petstore/python && make test)
82
+ (cd samples/openapi3/client/petstore/python-experimental && make test)
90
83
91
84
else
92
85
echo " Running node $NODE_INDEX to test 'samples.circleci.others' defined in pom.xml ..."
93
- # sudo update-java-alternatives -s java-1.7.0-openjdk-amd64
94
86
java -version
95
87
96
88
mvn --no-snapshot-updates --quiet verify -Psamples.circleci.others -Dorg.slf4j.simpleLogger.defaultLogLevel=error
You can’t perform that action at this time.
0 commit comments