fix(ci): smoke-test changes do not need to build images (#11174)

This commit is contained in:
david-leifker 2024-08-14 11:48:17 -05:00 committed by GitHub
parent c2dbfb8386
commit 66fdf29154
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View File

@ -52,20 +52,17 @@ runs:
frontend: frontend:
- "datahub-frontend/**" - "datahub-frontend/**"
- "datahub-web-react/**" - "datahub-web-react/**"
- "smoke-test/tests/cypress/**"
- "docker/datahub-frontend/**" - "docker/datahub-frontend/**"
ingestion: ingestion:
- "metadata-ingestion-modules/**" - "metadata-ingestion-modules/**"
- "metadata-ingestion/**" - "metadata-ingestion/**"
- "metadata-models/**" - "metadata-models/**"
- "smoke-test/**"
- "docker/datahub-ingestion**" - "docker/datahub-ingestion**"
ingestion-base: ingestion-base:
- "docker/datahub-ingestion-base/**" - "docker/datahub-ingestion-base/**"
docker: docker:
- "docker/**" - "docker/**"
backend: backend:
- ".github/**"
- "metadata-models/**" - "metadata-models/**"
- "datahub-upgrade/**" - "datahub-upgrade/**"
- "entity-registry/**" - "entity-registry/**"
@ -79,7 +76,6 @@ runs:
- "metadata-utils/**" - "metadata-utils/**"
- "metadata-operation-context/**" - "metadata-operation-context/**"
- "datahub-graphql-core/**" - "datahub-graphql-core/**"
- "smoke-test/**"
- "docker/**" - "docker/**"
kafka-setup: kafka-setup:
- "docker/kafka-setup/**" - "docker/kafka-setup/**"

View File

@ -88,6 +88,7 @@ runs:
${{ inputs.image_tag }} ${{ inputs.image_tag }}
""" """
echo "SINGLE_TAG=$(echo $IMAGES | tr '\n' ' ' | awk -F' ' '{ print $1 }'):$(echo $TAGS | tr '\n' ' ' | awk -F' ' '{ print $1 }')" >> $GITHUB_OUTPUT echo "SINGLE_TAG=$(echo $IMAGES | tr '\n' ' ' | awk -F' ' '{ print $1 }'):$(echo $TAGS | tr '\n' ' ' | awk -F' ' '{ print $1 }')" >> $GITHUB_OUTPUT
id: single_tag
- name: Upload image locally for testing (if not publishing) - name: Upload image locally for testing (if not publishing)
uses: ishworkh/docker-image-artifact-upload@v1 uses: ishworkh/docker-image-artifact-upload@v1
if: ${{ inputs.publish != 'true' }} if: ${{ inputs.publish != 'true' }}