mirror of
https://github.com/elastic/logstash.git
synced 2025-04-20 04:37:18 -04:00
Update the test_plugins pipeline script to execute only the unit tests. Use the vendored JRuby in every Ruby related duty, such as running `bundler` and `gem`. Temporarily comments plugins that has needs to be fixed and already fails on their Travis CI. Executes the testing of input tier1 plugins in VM instead of Buildkite agent.
9 lines
270 B
Bash
Executable file
9 lines
270 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export JRUBY_OPTS="-J-Xmx1g"
|
|
export GRADLE_OPTS="-Xmx4g -Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dorg.gradle.logging.level=info -Dfile.encoding=UTF-8"
|
|
|
|
./gradlew assemble
|
|
|
|
vendor/jruby/bin/jruby ci/test_plugins.rb $@
|