plex-test/.drone.yml

47 lines
1.8 KiB
YAML
Raw Normal View History

2017-06-29 21:42:35 +00:00
pipeline:
2017-07-09 21:37:07 +00:00
identify:
image: docker
commands:
2017-08-24 17:15:51 +00:00
# Grab the current version, prevents race conditions
#### Pass this into the Dockerfile somehow?
- apk add --no-cache openssl jq
- wget -qO- https://adam-ant.co.uk/plex/version.php | tee /dev/stderr | jq -r .release > .plex_version
2017-07-09 21:37:07 +00:00
2017-06-29 21:42:35 +00:00
build:
image: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2017-06-29 21:42:35 +00:00
commands:
- docker build --no-cache --pull -t plex-dev .
2017-06-30 15:39:55 +00:00
2017-06-29 21:42:35 +00:00
test:
image: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
2017-06-29 21:42:35 +00:00
commands:
2017-07-09 21:37:07 +00:00
- apk add --no-cache curl xmlstarlet grep
- export CUR_VERSION="$(cat .plex_version)"
- CON_NAME=$(docker run --rm -d -p 32400:32400 plex-dev)
2017-06-30 15:39:55 +00:00
- sleep 10 # Wait for plex to start!
- docker logs $$CON_NAME
- curl -sSL $(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $$CON_NAME):32400/identity | tee /dev/stderr | xmlstarlet sel -t -v "/MediaContainer/@version" | grep -qw $CUR_VERSION
- docker kill $$CON_NAME # Not really needed, but keeps things quick
2017-06-30 15:39:55 +00:00
publish:
image: docker
when:
event: [push, tag, deployment]
2017-06-30 16:48:24 +00:00
secrets: [ DOCKER_USER, DOCKER_PASS ]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
2017-08-24 17:15:51 +00:00
# Grab just the version, not the hash. Used for tagging
2017-07-09 21:37:07 +00:00
- export CUR_VERSION=$(cat .plex_version | cut -d \- -f1 )
2017-06-30 16:48:24 +00:00
- echo $DOCKER_USER
- docker tag plex-dev adamant/plexmediaserver:latest
- docker tag plex-dev adamant/plexmediaserver:$CUR_VERSION
2017-06-30 16:48:24 +00:00
- docker login -u $DOCKER_USER -p $DOCKER_PASS
2017-07-09 21:37:07 +00:00
- docker push adamant/plexmediaserver
- docker rmi adamant/plexmediaserver plex-dev
2017-08-24 17:15:51 +00:00
- echo "CONGRATS! SUCCESSFULLY BUILT PLEX VERSION $CUR_VERSION"