forked from Blazemeter/jmeter-bzm-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for standards JMeter listeners and partial support for …
…push promise (Blazemeter#56) * Added support for standards JMeter listeners and partial support for push promise * Fixed compatibility with previous version * Recover HTTP2 Simple data writer * Recover HTTP2 Simple data writer (Blazemeter#15) * Removed HTTP2 Simple data writer from JMeter menu and added BZ logo * added to HTTP 2 Simple data writer the same behavior than the default simple data writer to avoid misunderstanding * Fixed removing HTTP2 Simple data writer from menu * fixed codacy warnings
- Loading branch information
1 parent
15f080b
commit 87bb3db
Showing
30 changed files
with
3,129 additions
and
3,189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,33 @@ | ||
language: java | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
before_install: | ||
- curl -O -L https://github.com/inventit/mqtt-websocket-java/releases/download/1.0.1/mqtt-websocket-java-1.0.1.jar | ||
- mvn install:install-file -Dfile=mqtt-websocket-java-1.0.1.jar -DgroupId=io.inventit.dev -DartifactId=mqtt-websocket-java -Dversion=1.0.1 -Dpackaging=jar | ||
|
||
install: "mvn -Dmaven.test.skip=true clean install --batch-mode" | ||
script: "mvn -Djava.awt.headless=true -Dmaven.test.redirectTestOutputToFile=true -Dcobertura.report.format=xml --fail-at-end --batch-mode cobertura:cobertura test " | ||
|
||
after_success: | ||
env: | ||
global: | ||
- MAVEN_OPTS=-Dmaven.repo.local=.m2/repository | ||
- MQTT_WEBSOCKET_VERSION=1.0.1 | ||
|
||
cache: | ||
directories: | ||
- .jmeter | ||
- .m2 | ||
|
||
language: java | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
before_install: | ||
- sudo apt-get -y update | ||
- sudo apt-get -y install python default-jre-headless python-tk python-pip python-dev libxml2-dev libxslt-dev zlib1g-dev net-tools | ||
- sudo pip install bzt==1.11.0 | ||
- chmod -R +x ./.travis | ||
- "sh ./.travis/install-maven-dependency.sh https://github.com/inventit/mqtt-websocket-java/releases/download/$MQTT_WEBSOCKET_VERSION/mqtt-websocket-java-$MQTT_WEBSOCKET_VERSION.jar io.inventit.dev mqtt-websocket-java $MQTT_WEBSOCKET_VERSION" | ||
|
||
|
||
script: | ||
- "mvn -DskipTests=true clean install --batch-mode" | ||
- "mvn -Djava.awt.headless=true -Dmaven.test.redirectTestOutputToFile=true -Dcobertura.report.format=xml --fail-at-end --batch-mode cobertura:cobertura test" | ||
- "sh ./http2/target/jmeter-test/testJMeter.sh 4.0 $HOME/.jmeter" | ||
- "sh ./http2/target/jmeter-test/testJMeter.sh 3.3 $HOME/.jmeter" | ||
- "sh ./http2/target/jmeter-test/testJMeter.sh 3.2 $HOME/.jmeter" | ||
- "sh ./http2/target/jmeter-test/testJMeter.sh 3.1 $HOME/.jmeter" | ||
|
||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#/bin/bash | ||
set -ex | ||
|
||
if !(mvn dependency:get -Dartifact=$2:$3:$4); then | ||
mvn com.googlecode.maven-download-plugin:download-maven-plugin:1.4.0:wget -Ddownload.url=$1 | ||
mvn install:install-file -Dfile=target/${1##*/} -DgroupId=$2 -DartifactId=$3 -Dversion=$4 -Dpackaging=jar | ||
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.