diff options
Diffstat (limited to '.expeditor')
-rw-r--r-- | .expeditor/build.docker.yml | 3 | ||||
-rw-r--r-- | .expeditor/config.yml | 4 | ||||
-rwxr-xr-x | .expeditor/update_version.sh | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/.expeditor/build.docker.yml b/.expeditor/build.docker.yml new file mode 100644 index 0000000000..691cf68e81 --- /dev/null +++ b/.expeditor/build.docker.yml @@ -0,0 +1,3 @@ +image_registry: chef +env: + VERSION: "16.3.18"
\ No newline at end of file diff --git a/.expeditor/config.yml b/.expeditor/config.yml index fc7e78a75c..8a6f5c48d1 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -20,12 +20,10 @@ rubygems: - chef-bin - chef-utils -docker_images: - - chef - pipelines: - verify: public: true + - docker/build - habitat/build - habitat/test: definition: .expeditor/habitat-test.pipeline.yml diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh index b362157d4b..d92c019ebb 100755 --- a/.expeditor/update_version.sh +++ b/.expeditor/update_version.sh @@ -16,6 +16,9 @@ sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-bin/li sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-utils/lib/chef-utils/version.rb sed -i -r "s/VersionString\.new\(\".+\"\)/VersionString.new(\"$(cat VERSION)\")/" lib/chef/version.rb +# Update the version for the dobi +sed -i -r "s/^(\s*)VERSION: \".+\"/\1VERSION: \"$(cat VERSION)\"/" .expeditor/build.docker.yml + # Update the version inside Gemfile.lock bundle update chef chef-config chef-utils --jobs=7 --conservative |