summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2024-02-14 07:01:52 -0500
committerGitHub <noreply@github.com>2024-02-14 07:01:52 -0500
commit12306a3e05ba5778447c26f2e80a4c71da5bee0c (patch)
treec25df4359ed40c8fe43b6b3a12b1c90ba85615c8 /.github
parent2d64790f8c6c8be091ae6a68a64ba7176096681a (diff)
Assorted cleanup of CI/packaging related code. (#16938)
* Drop unused Dockerfile.test. It’s not been used for years, and it doesn’t even work at this point for it’s intended purpose. * Remove CodeClimate configuration. We’re not using it anymore, so there is no point to keeping the configuration around. * Remove the build_external directory. This isn’t used by any of our code AFAICT, and if it _is_ needed, it should actually be in some sub-directory of `tests` instead of a top-level directory whose name doesn’t even describe what it does. * Remove .gitattributes If there's any objection we can reinstate it. * Move coverity-scan.sh under packaging/utils * Move cmake files under packaging/cmake * Remove devcontainer * Fix up coverity script to run correctly from new location. --------- Co-authored-by: vkalintiris <vasilis@netdata.cloud>
Diffstat (limited to '.github')
-rw-r--r--.github/labeler.yml2
-rw-r--r--.github/workflows/coverity.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 30ebf663ca..d7c357509f 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -277,7 +277,7 @@ area/tests:
- any-glob-to-any-file:
- tests/**
- src/daemon/unit_test*
- - coverity-scan.sh
+ - packaging/utils/coverity-scan.sh
area/web:
- any:
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
index 4f5010a5c6..9113e179ed 100644
--- a/.github/workflows/coverity.yml
+++ b/.github/workflows/coverity.yml
@@ -7,7 +7,7 @@ on:
pull_request:
paths:
- .github/workflows/coverity.yml
- - coverity-scan.sh
+ - packaging/utils/coverity-scan.sh
env:
DISABLE_TELEMETRY: 1
concurrency:
@@ -42,7 +42,7 @@ jobs:
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
COVERITY_SCAN_SUBMIT_MAIL: ${{ secrets.COVERITY_SCAN_SUBMIT_MAIL }}
run: |
- bash -x ./coverity-scan.sh --with-install
+ bash -x ./packaging/utils/coverity-scan.sh --with-install
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env: