Sha256: 1aad4853f0f70161fe7c15f1d4394a3ec97aaf2f10c797216e707249ae8d999f

Contents?: true

Size: 359 Bytes

Versions: 2

Compression:

Stored size: 359 Bytes

Contents

#!/bin/sh

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

VERSION="${TRAVIS_TAG:=0.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-output.gemspec.bak

echo "Install bundler..."
bundle install

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

echo "DONE"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-tcp-output-1.0.1 ci/build.sh
fluent-plugin-tcp-output-1.0.0 ci/build.sh