summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-09-30 03:32:40 -0400
committerGitHub <noreply@github.com>2020-09-30 17:32:40 +1000
commitb8713d153df674e97f3da5809a6151b087fdadf6 (patch)
treed3592851dab0f0df5deb5e3685bc66739dcbf5bb /.github
parentcfcfbb5880f044cd9d3c4d445285acc4cb49d8fe (diff)
Add a few changes that were missed by the systemd updater support. (#10007)
* Add a check to ensure that the install leaves a clean repo. * Add a few changes that were missed by the systemd updater support.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/checks.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index 46b88ca43d..f8f437e0f9 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -83,3 +83,15 @@ jobs:
- name: Run run_install_with_dist_file.sh
run: |
./.github/scripts/run_install_with_dist_file.sh "${DISTFILE}"
+ gitignore-check:
+ name: .gitignore
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Prepare environment
+ run: ./packaging/installer/install-required-packages.sh --dont-wait --non-interactive netdata
+ - name: Build netdata
+ run: ./netdata-installer.sh --dont-start-it --disable-telemetry --dont-wait --install /tmp/install
+ - name: Check that repo is clean
+ run: if [ "$(git status --porcelain=v1 | wc -l)" -gt 0 ] ; then exit 1 ; fi