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

chore: remove unneeded image paths in source build wf #590

Merged
merged 1 commit into from
Mar 6, 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
36 changes: 0 additions & 36 deletions .github/workflows/build-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,10 @@ env:
IMAGE_REPO_DSPO: data-science-pipelines-operator
IMAGE_REPO_SERVER: ds-pipelines-api-server
IMAGE_REPO_UI: ds-pipelines-frontend
IMAGE_REPO_CACHE: ds-pipelines-cacheserver
IMAGE_REPO_PA: ds-pipelines-persistenceagent
IMAGE_REPO_SWF: ds-pipelines-scheduledworkflow
IMAGE_REPO_VC: ds-pipelines-viewercontroller
IMAGE_REPO_ARTIFACT: ds-pipelines-artifact-manager
HumairAK marked this conversation as resolved.
Show resolved Hide resolved
IMAGE_REPO_LAUNCHER: ds-pipelines-launcher
IMAGE_REPO_DRIVER: ds-pipelines-driver
IMAGE_REPO_MLMD_WRITER: ds-pipelines-metadata-writer
HumairAK marked this conversation as resolved.
Show resolved Hide resolved
IMAGE_REPO_MLMD_ENVOY: ds-pipelines-metadata-envoy
IMAGE_REPO_MLMD_GRPC: ds-pipelines-metadata-grpc
SOURCE_DSPO_BRANCH: ${{ inputs.src_dspo_branch }}
Expand Down Expand Up @@ -132,22 +128,6 @@ jobs:
GH_REPO: ${{ inputs.dsp_org_repo }}
OVERWRITE: ${{ env.OVERWRITE_IMAGES }}

CACHE-build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build
name: Build Image
env:
SOURCE_BRANCH: ${{ env.SOURCE_DSP_BRANCH }}
with:
IMAGE_REPO: ${{ env.IMAGE_REPO_CACHE }}
DOCKERFILE: backend/Dockerfile.cacheserver
GH_REPO: ${{ inputs.dsp_org_repo }}
OVERWRITE: ${{ env.OVERWRITE_IMAGES }}

PA-build:
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -180,22 +160,6 @@ jobs:
GH_REPO: ${{ inputs.dsp_org_repo }}
OVERWRITE: ${{ env.OVERWRITE_IMAGES }}

VC-build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build
name: Build Image
env:
SOURCE_BRANCH: ${{ env.SOURCE_DSP_BRANCH }}
with:
IMAGE_REPO: ${{ env.IMAGE_REPO_VC }}
DOCKERFILE: backend/Dockerfile.viewercontroller
GH_REPO: ${{ inputs.dsp_org_repo }}
OVERWRITE: ${{ env.OVERWRITE_IMAGES }}

DRIVER-build:
runs-on: ubuntu-latest
permissions:
Expand Down
Loading