grim/convey

Parents 98c9b62946d8
Children 46e65b97abd6
Remove the final env image as it can be replaced by a script command
--- a/convey.yml Sat Jul 27 11:27:02 2019 -0500
+++ b/convey.yml Sat Jul 27 11:29:45 2019 -0500
@@ -81,21 +81,6 @@
- BITBUCKET_AUTH_PASSWORD
- BITBUCKET_FILES=*
- # tasks for creating images
- import-images:
- type: docker/import
- files:
- - images
- build-image-env:
- type: docker/build
- dockerfile: images/env/Dockerfile
- tag: convey/env
-
- # debugging tasks
- debug-env:
- type: docker/run
- image: convey/env
-
plans:
# the default build plan
default:
@@ -126,23 +111,6 @@
- name: upload
tasks:
- deploy-to-bitbucket
- # plan to build support images
- images:
- stages:
- - name: images-import
- tasks:
- - import-images
- - name: images-build
- concurrent: true
- tasks:
- - build-image-env
- debug:
- stages:
- - tasks: [debug-env]
- environment:
- - HG_COMMIT
- - HG_COMMIT_SHORT
- - HG_BRANCH
clean:
stages:
- name: clean
@@ -150,7 +118,6 @@
meta-plans:
everything:
plans:
- - images
- default
release:
plans:
--- a/images/env/Dockerfile Sat Jul 27 11:27:02 2019 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-FROM gliderlabs/alpine:edge
-
-CMD ["env"]
--- a/images/env/README.md Sat Jul 27 11:27:02 2019 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-# convey/env
-
-The env image is meant to help you debug configurations in convey. It just spits out the environment that the container was passed.
-
-## Example
-
- tasks:
- debug:
- type: docker/run
- image: convey/env
-
-## Environment Variables
-
-None.