Skip to content

Commit

Permalink
feature(kafka): introduce pipelines for the basic case
Browse files Browse the repository at this point in the history
first pipelines, based on docker and aws backends
  • Loading branch information
fruch committed May 27, 2024
1 parent c5cf120 commit 8c64e87
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions jenkins-pipelines/oss/kafka_connectors/_display_name
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Kafka Connectors Tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!groovy

// trick from https://github.com/jenkinsci/workflow-cps-global-lib-plugin/pull/43
def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm)

longevityPipeline(
backend: 'aws',
region: 'eu-west-1',
availability_zone: 'c',

test_name: 'longevity_test.LongevityTest.test_custom_time',
test_config: 'test-cases/kafka/longevity-kafka-cdc.yaml',
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!groovy

// trick from https://github.com/jenkinsci/workflow-cps-global-lib-plugin/pull/43
def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm)

longevityPipeline(
backend: 'docker',

test_name: 'longevity_test.LongevityTest.test_custom_time',
test_config: 'test-cases/kafka/longevity-kafka-cdc.yaml',
)

0 comments on commit 8c64e87

Please sign in to comment.