Sha256: 4903d54ce8f8e71f4c798a03486eb6729a1fdd235f3166f501efd7a9e1bb8b24

Contents?: true

Size: 349 Bytes

Versions: 1

Compression:

Stored size: 349 Bytes

Contents

#!/bin/sh

echo "Starting build process in: $(pwd)"
set -e

VERSION="${VERSION:=1.0.0}"
echo "Building for tag $VERSION, modify .gemspec file..."
sed -i.bak "s/0.0.0/$VERSION/g" ./fluent-plugin-tcp_output.gemspec
rm -f ./fluent-plugin-tcp.gemspec.bak

echo "Install bundler..."
bundle install

echo "Run unit tests..."
bundle exec rake

echo "DONE"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-tcp_output-1.0.0 ci/build.sh