mirror of
https://github.com/elastic/logstash.git
synced 2025-06-28 01:37:28 -04:00
introduces two rake tasks: `rake artifact:docker_oss` and `rake artifact:docker`, which will create the docker images of the OSS and non OSS packages. These tasks depend on the tar artifacts being built. Also `rake artifact:all` has been modified to also call these two tasks. most code was moved from https://github.com/elastic/logstash-docker/
16 lines
491 B
Python
16 lines
491 B
Python
import os
|
|
import pytest
|
|
from subprocess import run, PIPE
|
|
|
|
version = run('./bin/elastic-version', stdout=PIPE).stdout.decode().strip()
|
|
version_number = version.split('-')[0] # '7.0.0-alpha1-SNAPSHOT' -> '7.0.0'
|
|
logstash_version_string = 'logstash %s' % version_number # eg. 'logstash 7.0.0'
|
|
|
|
|
|
try:
|
|
if len(os.environ['STAGING_BUILD_NUM']) > 0:
|
|
version += '-%s' % os.environ['STAGING_BUILD_NUM'] # eg. '5.3.0-d5b30bd7'
|
|
except KeyError:
|
|
pass
|
|
|
|
container_name = 'logstash-test'
|