Skip to content

Commit e30a3fe

Browse files
committed
Adjust release process after quickstart changes
1 parent 56a7669 commit e30a3fe

File tree

6 files changed

+0
-264
lines changed

6 files changed

+0
-264
lines changed

.github/workflows/release_prepare.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@ jobs:
100100
fi
101101
done
102102
git add examples/quickstart
103-
- name: Regenerate quickstart cloud requirements
104-
run: |
105-
scripts/generate_cloud_requirements.sh --zenml-version "${{ needs.fetch-versions.outputs.new_version }}"
106-
git add examples/quickstart/requirements_*.txt
107103
# Generate and append release notes
108104
- name: Generate release notes
109105
# Only run this part once when the release branch is created

docker/zenml-quickstart-dev.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ FROM $BASE_IMAGE AS base
55
# Set the working directory
66
WORKDIR /app
77

8-
ARG ZENML_BRANCH
98
ARG CLOUD_PROVIDER
109

1110
# Install the Python requirements

docker/zenml-quickstart.Dockerfile

Lines changed: 0 additions & 29 deletions
This file was deleted.

release-cloudbuild-preparation.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ steps:
7777
--platform linux/amd64 \
7878
--build-arg BASE_IMAGE=$$USERNAME/prepare-release:base-${_ZENML_NEW_VERSION} \
7979
--build-arg CLOUD_PROVIDER=gcp \
80-
--build-arg ZENML_BRANCH=${_ZENML_BRANCH} \
8180
-f docker/zenml-quickstart-dev.Dockerfile \
8281
-t $$USERNAME/prepare-release:quickstart-gcp-${_ZENML_NEW_VERSION}
8382
@@ -97,7 +96,6 @@ steps:
9796
--platform linux/amd64 \
9897
--build-arg BASE_IMAGE=$$USERNAME/prepare-release:base-${_ZENML_NEW_VERSION} \
9998
--build-arg CLOUD_PROVIDER=aws \
100-
--build-arg ZENML_BRANCH=${_ZENML_BRANCH} \
10199
-f docker/zenml-quickstart-dev.Dockerfile \
102100
-t $$USERNAME/prepare-release:quickstart-aws-${_ZENML_NEW_VERSION}
103101
id: build-quickstart-aws
@@ -116,7 +114,6 @@ steps:
116114
--platform linux/amd64 \
117115
--build-arg BASE_IMAGE=$$USERNAME/prepare-release:base-${_ZENML_NEW_VERSION} \
118116
--build-arg CLOUD_PROVIDER=azure \
119-
--build-arg ZENML_BRANCH=${_ZENML_BRANCH} \
120117
-f docker/zenml-quickstart-dev.Dockerfile \
121118
-t $$USERNAME/prepare-release:quickstart-azure-${_ZENML_NEW_VERSION}
122119
id: build-quickstart-azure

release-cloudbuild.yaml

Lines changed: 0 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -156,75 +156,6 @@ steps:
156156
secretEnv:
157157
- USERNAME
158158

159-
# build client quickstart gcp image - python 3.11
160-
- name: gcr.io/cloud-builders/docker
161-
args:
162-
- '-c'
163-
- |
164-
docker build \
165-
--platform linux/amd64 \
166-
--build-arg ZENML_VERSION=$TAG_NAME \
167-
--build-arg PYTHON_VERSION=3.11 \
168-
--build-arg CLOUD_PROVIDER=gcp \
169-
-f docker/zenml-quickstart.Dockerfile . \
170-
-t $$USERNAME/zenml-public-pipelines:quickstart-$TAG_NAME-py3.11-gcp
171-
id: build-quickstart-3.11-gcp
172-
waitFor: [ 'push-base' ]
173-
entrypoint: bash
174-
secretEnv:
175-
- USERNAME
176-
177-
# build client quickstart aws image - python 3.11
178-
- name: gcr.io/cloud-builders/docker
179-
args:
180-
- '-c'
181-
- |
182-
docker build \
183-
--platform linux/amd64 \
184-
--build-arg ZENML_VERSION=$TAG_NAME \
185-
--build-arg PYTHON_VERSION=3.11 \
186-
--build-arg CLOUD_PROVIDER=aws \
187-
-f docker/zenml-quickstart.Dockerfile . \
188-
-t $$USERNAME/zenml-public-pipelines:quickstart-$TAG_NAME-py3.11-aws
189-
id: build-quickstart-3.11-aws
190-
waitFor: [ 'push-base' ]
191-
entrypoint: bash
192-
secretEnv:
193-
- USERNAME
194-
195-
# build client quickstart azure image - python 3.11
196-
- name: gcr.io/cloud-builders/docker
197-
args:
198-
- '-c'
199-
- |
200-
docker build \
201-
--platform linux/amd64 \
202-
--build-arg ZENML_VERSION=$TAG_NAME \
203-
--build-arg PYTHON_VERSION=3.11 \
204-
--build-arg CLOUD_PROVIDER=azure \
205-
-f docker/zenml-quickstart.Dockerfile . \
206-
-t $$USERNAME/zenml-public-pipelines:quickstart-$TAG_NAME-py3.11-azure
207-
id: build-quickstart-3.11-azure
208-
waitFor: [ 'push-base' ]
209-
entrypoint: bash
210-
secretEnv:
211-
- USERNAME
212-
213-
# push quickstart images
214-
- name: gcr.io/cloud-builders/docker
215-
args:
216-
- '-c'
217-
- docker push --all-tags $$USERNAME/zenml-public-pipelines
218-
id: push-quickstart
219-
waitFor:
220-
- build-quickstart-3.11-gcp
221-
- build-quickstart-3.11-aws
222-
- build-quickstart-3.11-azure
223-
- docker-login
224-
entrypoint: bash
225-
secretEnv:
226-
- USERNAME
227-
228159
timeout: 3600s
229160
availableSecrets:
230161
secretManager:

scripts/generate_cloud_requirements.sh

Lines changed: 0 additions & 158 deletions
This file was deleted.

0 commit comments

Comments
 (0)