Skip to content

chore: update repo by service bot #21

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
44 changes: 0 additions & 44 deletions .semaphore/project.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .semaphore/publish_to_codeartifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version : v1.0
name : Publish to Code Artifact
agent :
machine :
type : s1-prod-ubuntu20-04-amd64-1
type : s1-prod-ubuntu24-04-amd64-1

global_job_config :
env_vars :
Expand Down
2 changes: 1 addition & 1 deletion .semaphore/publish_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version : v1.0
name : Publish to S3
agent :
machine :
type : s1-prod-ubuntu20-04-amd64-1
type : s1-prod-ubuntu24-04-amd64-1

global_job_config :
env_vars :
Expand Down
50 changes: 29 additions & 21 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
#
# Copyright (C) 2021-2023 Confluent, Inc.
#

# This file is managed by ServiceBot plugin - Semaphore. The content in this file is created using a common
# template and configurations in service.yml.
# Any modifications made to version, name, agent and global_job_config will be overwritten by the generated
# content in nightly runs. Code changes made to the remaining sections will not be affected.
# For more information, please refer to the page:
# https://confluentinc.atlassian.net/wiki/spaces/Foundations/pages/2871296194/Add+SemaphoreCI
version: v1.0
name: Python integration java lib
name: build-test-release
agent:
machine:
type: s1-prod-ubuntu20-04-amd64-1
type: s1-prod-ubuntu24-04-amd64-1

execution_time_limit:
hours: 2
auto_cancel:
running:
when: "branch != 'main'"
execution_time_limit:
hours: 2
queue:
- when: "branch != 'master'"
processing: parallel

global_job_config:
prologue:
commands:
- sem-version java 11
- checkout
- make show-args
- . vault-setup
- . vault-sem-get-secret ci-reporting
- . vault-sem-get-secret v1/ci/kv/service-foundations/cc-mk-include
- make init-ci
epilogue:
always:
commands:
- make epilogue-ci

blocks:
- name: Build
dependencies: []
Expand Down Expand Up @@ -64,17 +85,4 @@ promotions:

- name: Publish to CodeArtifact
pipeline_file: publish_to_codeartifact.yml

queue:
- when: "branch != 'master'"
processing: parallel

global_job_config:
prologue:
commands:
- sem-version java 11
- checkout
- . vault-setup
- . vault-sem-get-secret ci-reporting
- . vault-sem-get-secret v1/ci/kv/service-foundations/cc-mk-include

1 change: 1 addition & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### service-bot sonarqube plugin managed file
sonar.coverage.exclusions=**/test/**/*,**/tests/**/*,**/mock/**/*,**/mocks/**/*,**/*mock*,**/*test*
sonar.coverage.jacoco.xmlReportPaths=**/jacoco.xml
sonar.cpd.exclusions=**/test/**/*,**/tests/**/*,**/mock/**/*,**/mocks/**/*,**/*mock*,**/*test*
sonar.exclusions=**/*.pb.*,**/mk-include/**/*
sonar.java.binaries=.
sonar.language=java
Expand Down