Skip to content

Commit

Permalink
Bump Travis InfluxDB 2.0.x release
Browse files Browse the repository at this point in the history
  • Loading branch information
mneudert committed Dec 15, 2020
1 parent bdb3927 commit e305a5b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
allow_failures:
env:
- CAN_FAIL=true
- VER_INFLUXDB=2.0.2
- VER_INFLUXDB=2.0.3
- INFLUX_TOKEN=instream_test

include:
Expand All @@ -30,7 +30,7 @@ jobs:
mkdir -p "${HOME}/bin"
wget "https://dl.influxdata.com/influxdb/releases/influxdb-${VER_INFLUXDB}_linux_amd64.tar.gz"
tar -xzf "influxdb-${VER_INFLUXDB}_linux_amd64.tar.gz"
tar -xzf "influxdb-${VER_INFLUXDB}_linux_amd64.tar.gz"
find influxdb-* -name influxd -type f -exec mv {} "${HOME}/bin" \;
fi
before_script: |-
Expand Down Expand Up @@ -115,8 +115,16 @@ jobs:
otp_release: 23.0
env:
- CAN_FAIL=true
- VER_INFLUXDB=2.0.2
- VER_INFLUXDB=2.0.3
- INFLUX_TOKEN=instream_test
before_install: |-
if [ ! -x "${HOME}/bin/influxd" ]; then
mkdir -p "${HOME}/bin"
wget "https://dl.influxdata.com/influxdb/releases/influxdb2-${VER_INFLUXDB}_linux_amd64.tar.gz"
tar -xzf "influxdb2-${VER_INFLUXDB}_linux_amd64.tar.gz"
find influxdb2-* -name influxd -type f -exec mv {} "${HOME}/bin" \;
fi
before_script: |-
function start_influxdb {
nohup "${HOME}/bin/influxd" \
Expand Down

0 comments on commit e305a5b

Please sign in to comment.