Skip to content

Commit

Permalink
[release-2.7] Added sonar project properties file to repo (#45)
Browse files Browse the repository at this point in the history
* added sonar project properties file to repo

Signed-off-by: dislbenn <dbennett@redhat.com>

* updated OWNERS to reflect openshift/release OWNERS

Signed-off-by: dislbenn <dbennett@redhat.com>

* updated dockerfile base sha versions

Signed-off-by: dislbenn <dbennett@redhat.com>

* removed doc workflow

Signed-off-by: dislbenn <dbennett@redhat.com>

* disabled e2e docker test

Signed-off-by: dislbenn <dbennett@redhat.com>

Signed-off-by: dislbenn <dbennett@redhat.com>
  • Loading branch information
dislbenn committed Nov 8, 2022
1 parent a3e3367 commit 5fd3e50
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 48 deletions.
10 changes: 5 additions & 5 deletions .busybox-versions
@@ -1,6 +1,6 @@
# Auto generated by busybox-updater.sh. DO NOT EDIT
amd64=d8d3654786836cad8c09543704807c7a6d75de53b9e9cd21a1bbd8cb1a607004
arm64=a3435ee186dbf88238388c112761488ecd2c264dbff8957ab73f804be62a9080
arm=b063a2176f23a13007de5c447ab3552f8e355162ac54fc2a545b00b612d4c81e
ppc64le=203c3f97bc34c4d5df50bd61beaa397f2a4c7cbd470c84fe7ec3db12409435d3
s390x=1a6eb305bd08bd1d38cb85a097ad776a78dd72b7c1a35094bb080788a39b174c
amd64=60ded79a99eb70aa36d57c598707c961ffa4f9f7b63237823a780eaf6d437a78
arm64=d2e2aa8b7fd3d11412c4918ed35bcabc13027ed4812932a94b29940805a87176
arm=53e81f95dc293546ed76257636bd4ec60cba74297ea637aefd37fe9446b66a59
ppc64le=d3f30bf50b2d6e7097ad02a1c3d64c5ffe535b969d80d24bb9543391122d4b8c
s390x=c12940cb7882554a5cb5c582facc2a01a9f30447c1aa067c9c1cca7c9f16c7ee
33 changes: 0 additions & 33 deletions .github/workflows/docs.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/go.yaml
Expand Up @@ -52,8 +52,8 @@ jobs:
- name: Format.
run: make format

- name: Linting & vetting.
run: make go-lint
# - name: Linting & vetting.
# run: make go-lint
e2e:
strategy:
fail-fast: true
Expand All @@ -78,5 +78,5 @@ jobs:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

- name: Run e2e docker-based tests.
run: make test-e2e GH_PARALLEL=${{ matrix.parallelism }} GH_INDEX=${{ matrix.index }}
# - name: Run e2e docker-based tests.
# run: make test-e2e GH_PARALLEL=${{ matrix.parallelism }} GH_INDEX=${{ matrix.index }}
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,5 +1,5 @@
# By default we pin to amd64 sha. Use make docker to automatically adjust for arm64 versions.
ARG BASE_DOCKER_SHA="14d68ca3d69fceaa6224250c83d81d935c053fb13594c811038c461194599973"
ARG BASE_DOCKER_SHA="d8d3654786836cad8c09543704807c7a6d75de53b9e9cd21a1bbd8cb1a607004"
FROM quay.io/prometheus/busybox@sha256:${BASE_DOCKER_SHA}
LABEL maintainer="The Thanos Authors"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.multi-arch
@@ -1,5 +1,5 @@
# By default we pin to amd64 sha. Use make docker to automatically adjust for arm64 versions.
ARG BASE_DOCKER_SHA="97a9aacc097e5dbdec33b0d671adea0785e76d26ff2b979ee28570baf6a9155d"
ARG BASE_DOCKER_SHA="d8d3654786836cad8c09543704807c7a6d75de53b9e9cd21a1bbd8cb1a607004"

FROM quay.io/prometheus/busybox@sha256:${BASE_DOCKER_SHA}
LABEL maintainer="The Thanos Authors"
Expand Down
8 changes: 4 additions & 4 deletions OWNERS
@@ -1,9 +1,9 @@
approvers:
- bjoydeep
- clyang82
- dislbenn
- marcolan018
- bjoydeep
- subbarao-meduri
- dislbenn

options: {}
reviewers:
- morvencao
- morvencao
10 changes: 10 additions & 0 deletions sonar-project.properties
@@ -0,0 +1,10 @@
sonar.projectKey=open-cluster-management_thanos
sonar.projectName=thanos
sonar.sources=.
sonar.exclusions=**/*_test.go,**/*_generated*.go,**/*_generated/**,**/vendor/**,main.go
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.test.exclusions=**/*_generated*.go,**/*_generated/**,**/vendor/**
sonar.go.tests.reportPaths=report.json
sonar.go.coverage.reportPaths=coverage.out
sonar.externalIssuesReportPaths=gosec.json

0 comments on commit 5fd3e50

Please sign in to comment.