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

CXC-28284 initial setup for cisco build #1293

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 1 addition & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners

* @open-telemetry/lambda-extension-approvers
* @CXEPI/cxdl-all
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

17 changes: 17 additions & 0 deletions .github/params.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
docker:
- go_worker:
image_tag: "1.22"

parameters:
coverage_report_path: ./cp.out
include_regions: gov_com
lead_developer: hanxie
package_directory: dist
sonar_exclusions: "Makefile,README.md,go.mod,go.sum"
sonar_test_inclusions: "**/*_test.go"
test_report_path: ./junit-report.xml
track_name: datalake

artifacts:
- upload_artifact: {source_path: ./dist/collector-amd64.zip, artifact_type: lambda, artifact_name: aws-otel-collector-amd64}
- upload_artifact: {source_path: ./dist/collector-arm64.zip, artifact_type: lambda, artifact_name: aws-otel-collector-arm64}
28 changes: 0 additions & 28 deletions .github/release.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .github/workflows/ci-collector.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/ci-java.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci-nodejs.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/ci-python.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/ci-shellcheck.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/ci-terraform.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: cxdl-api-ingestion
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
branches:
- main
pull_request:
types: [opened, synchronize, reopened]


jobs:
CODE-CI:
if: startsWith(github.event.ref, 'refs/tags/v') == false
uses: CXEPI/CPX-CODE-CI/.github/workflows/[email protected]
with:
classification: app-serverless
build_language: go
secrets: inherit
Loading