summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-09 21:35:24 +1000
committerGitHub <noreply@github.com>2020-03-09 21:35:24 +1000
commite183d7499e4568a31b595e946eaa145356f436ce (patch)
tree6f8eb047f703cc226bb3d77639acdc9beea3e258 /.travis.yml
parent550f3078a3be9bb8c1ac6cf9f99905dcc2b3c7cc (diff)
Migrate Travis based checks to Github Actions (#8329)
* Migrate Travis based checks to Github Actions * Remove Gitlab CI config * Remove ./build/build.sh and use simple shell to do consistency checks on Dashbaord JS * Install prereq deps * Rename job * Fix brain fart momemt * Split Dashboard checks into a separate job
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml
index fdb1dceb13..82d5f8ad63 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,7 +46,6 @@ notifications:
#
stages:
# Mandatory runs, we always want these executed
- - name: Code quality, linting, syntax, code style
- name: Build process
- name: Artifacts validation
- name: Artifacts validation on bare OS, stable to current lifecycle checks
@@ -97,22 +96,6 @@ jobs:
allow_failures:
- env: ALLOW_SOFT_FAILURE_HERE=true
include:
- # Do code quality, syntax checking and other pre-build activities
- - stage: Code quality, linting, syntax, code style
-
- name: Run shellchecking on BASH
- script: shellcheck --format=gcc $(find . -name '*.sh.in' -not -iwholename '*.git*')
-
- # This falls under same stage defined earlier
- - name: Run checksum checks on kickstart files
- script: ./tests/installer/checksums.sh
- env: LOCAL_ONLY="true"
-
- # This falls under same stage defined earlier
- - name: Web Dashboard pre-generated file consistency checks (dashboard.js)
- script: cp web/gui/dashboard.js /tmp/dashboard.js && ./build/build.sh && diff /tmp/dashboard.js web/gui/dashboard.js
-
-
# Ensure netdata code builds successfully
- stage: Build process