Skip to content

Commit 7d6f40e

Browse files
fix quickstart image
1 parent 82f9bdc commit 7d6f40e

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

projects/vdk-core/src/vdk/api/plugin/plugin_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def set_properties_factory_method(
6868
"""
6969
Register properties implementation backend.
7070
Properties API enable keeping state of a data job.
71-
Default implementation is in-memory so it's strongly recommended to install vdk-properties plugin
71+
Default implementation is in-memory, so it's strongly recommended to install vdk-properties plugin
7272
which provides API based properties implementation
7373
7474
IPropertiesServiceClient is used as provides logic of how properties are persisted

projects/vdk-plugins/.plugin-common.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@
7474
- if: '$CI_COMMIT_BRANCH == "main"'
7575
changes:
7676
- "projects/vdk-plugins/$PLUGIN_NAME/**/*"
77+
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
7778

7879

7980
.release-vdk-image:
8081
stage: release_image
8182
image:
8283
name: dcato/kaniko-alpine:latest
83-
entrypoint: [""]
8484
before_script:
8585
- export VDK_PATCH_VERSION=${CI_PIPELINE_ID}
8686
- export BUILD_TYPE=release
@@ -102,3 +102,4 @@
102102
- if: '$CI_COMMIT_BRANCH == "main"'
103103
changes:
104104
- "projects/vdk-plugins/$PLUGIN_NAME/**/*"
105+
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'

projects/vdk-plugins/quickstart-vdk/.plugin-ci.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,19 @@ quickstart-vdk-release-candidate-base-image:
8686
release-quickstart-vdk:
8787
variables:
8888
PLUGIN_NAME: quickstart-vdk
89-
rules:
90-
- if: '$CI_COMMIT_BRANCH == "main"'
91-
changes: *test_quickstart_vdk_locations
89+
# rules:
90+
# - if: '$CI_COMMIT_BRANCH == "main"'
91+
# changes: *test_quickstart_vdk_locations
92+
# - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
9293
extends: .release-plugin
9394

9495
release-vdk-image-quickstart-vdk:
9596
variables:
9697
PLUGIN_NAME: quickstart-vdk
9798
extends: .release-vdk-image
98-
rules:
99-
- if: '$CI_COMMIT_BRANCH == "main"'
100-
changes: *test_quickstart_vdk_locations
101-
- if: '$CI_PIPELINE_SOURCE == "schedule"'
102-
when: never
99+
# rules:
100+
# - if: '$CI_COMMIT_BRANCH == "main"'
101+
# changes: *test_quickstart_vdk_locations
102+
# - if: '$CI_PIPELINE_SOURCE == "schedule"'
103+
# when: never
104+
# - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'

0 commit comments

Comments
 (0)