Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): fix pipeline #5389

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -43,7 +42,6 @@ jobs:
- name: Build and push
working-directory: ./operator/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -60,7 +58,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -71,7 +68,6 @@ jobs:
- name: Build and push
working-directory: ./executor/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -87,7 +83,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -98,7 +93,6 @@ jobs:
- name: Build and push (Rclone Storage Initializer)
working-directory: ./components/rclone-storage-initializer
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -117,7 +111,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -128,20 +121,18 @@ jobs:
- name: Build and push (Conda Base Image)
working-directory: ./wrappers/s2i/python
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build-conda-base docker-push-conda-base
- name: Build and push (Base Wrapper)
working-directory: ./wrappers/s2i/python
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push PYTHON_VERSION=3.8.10
make docker-tag-base-python docker-push-base-python PYTHON_VERSION=3.8.10
docker save -o /tmp/base-wrapper.tar ${DOCKER_REGISTRY}/seldon-core-s2i-python38:${VERSION}
docker save -o /tmp/base-wrapper.tar seldonio/seldon-core-s2i-python38:${VERSION}
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -170,7 +161,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand Down Expand Up @@ -198,7 +188,6 @@ jobs:
- name: Build and push (Prepackaged Server Image)
working-directory: ./${{ matrix.server }}/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Loading