Sha256: ab5a7b0fc25da0ee41e6778c63338f69fb05ac1558e366523bea2a0358c7dd9b
Contents?: true
Size: 876 Bytes
Versions: 3
Compression:
Stored size: 876 Bytes
Contents
#!/bin/bash # version: 1 ######################################################## # # AUTOMATICALLY GENERATED! DO NOT EDIT # ######################################################## set -e if [ "$LOGSTASH_BRANCH" ]; then echo "Building plugin using Logstash source" BASE_DIR=`pwd` echo "Checking out branch: $LOGSTASH_BRANCH" git clone -b $LOGSTASH_BRANCH https://github.com/elastic/logstash.git ../../logstash --depth 1 printf "Checked out Logstash revision: %s\n" "$(git -C ../../logstash rev-parse HEAD)" cd ../../logstash echo "Building plugins with Logstash version:" cat versions.yml echo "---" # We need to build the jars for that specific version echo "Running gradle assemble in: `pwd`" ./gradlew assemble cd $BASE_DIR export LOGSTASH_SOURCE=1 else echo "Building plugin using released gems on rubygems" fi
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
logstash-mixin-rabbitmq_connection-6.0.0-java | ci/setup.sh |
logstash-mixin-rabbitmq_connection-5.0.2-java | ci/setup.sh |
logstash-mixin-rabbitmq_connection-5.0.1-java | ci/setup.sh |