summaryrefslogtreecommitdiffstats
path: root/.github/workflows
AgeCommit message (Collapse)Author
2021-04-06Add libzstd-dev (#10925)Josh Soref
Needed by Unit Tests (cmocka) Fixes #10838 Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
2021-04-05Properly handle binary package reuplods. (#10878)Austin S. Hemmelgarn
PackageCloud does not allow duplicate uploads, and we currently have no good way to avoid duplicate nightly builds, so we need to remove any existing packages with the same name before we upload newly built packages.
2021-03-25Fix handling of binary package uploads. (#10860)Austin S. Hemmelgarn
2021-03-23Properly reference the distro-ID parsing script for package uploads. (#10840)Austin S. Hemmelgarn
2021-03-23Add basic failure notifications for the Coverity workflow. (#10796)Austin S. Hemmelgarn
2021-03-22Fix name of PackageCLoud API token secret in workflows. (#10828)Austin S. Hemmelgarn
It0s easier to rename it in the workflows than in the repo configuration.
2021-03-22Added Ubuntu 21.04 and Fedora 34 to our CI checks and binary package builds. ↵Austin S. Hemmelgarn
(#10791) * Add Ubuntu 21.04 and Fedora 34 to our CI checks. * Add Fedora 34 and Ubuntu 21.04 package builds as well.
2021-03-19Fix handling of nightly and release packages in GHA workflows. (#10819)Austin S. Hemmelgarn
2021-03-18Run the Docker CI checks unconditionally instead of only when we see ↵Austin S. Hemmelgarn
changes. (#10808) The list of files to indicate changes was woefully incomplete, and we want this to be a required check anyway, so we have to run it unconditionally.
2021-03-18Expand what platforms we run updater CI checks on. (#10792)Austin S. Hemmelgarn
2021-03-18Fix typos in GHA workflows. (#10803)Austin S. Hemmelgarn
2021-03-17Add Slack notifications for build failures. (#10781)Austin S. Hemmelgarn
2021-03-16Adds ACLK-NG as fallback(#10315)Timotej S
* adds a new implementation of ACLK written almost from scratch * external dependencies only OpenSSL and JSON-C * fallback for systems where ACLK Legacy can't build (for technical or philosophical reasons) * can be forced to build by giving "--aclk-ng" to the installer
2021-03-15Docker-based packaging workflow in GitHub Actions. (#9964)Austin S. Hemmelgarn
* Add a new GHA workflow for building and publishing binary packages. This greatly simplifies the package handling code, significantly reduces the amount of things we are running in Travis, adds better CI for package builds for PRs, finally eliminates LXC from any of our CI, and enables us to make further major improvements much easier. * Migrate repo cleanup to GHA and remove dead code. * Fix RPM package builds. * Fix DEB installation.
2021-03-04Changed Docker image tagging to use semver tags for releases. (#10648)Austin S. Hemmelgarn
* Changed Docker image tagging to use semver tags for releases. This allows users to use image names like `netdata/netdata:1` or `netdata/netdata@1.29` and track the most up-to-date release that matches that version prefix. Such usage is a common practice for projects using semantic versioning like we are. This has a side effect, however, of remivng the `v` from the start of our version tags. Not having it is also more consistent with how a vast majority of other projects handle version tags, but users will need to be notified about the change. * Proper backwards compatability. * Add documentation about Docker image tags. * Update packaging/docker/README.md Co-authored-by: Joel Hans <joel.g.hans@gmail.com> Co-authored-by: Joel Hans <joel.g.hans@gmail.com>
2021-03-03Add a new workflow to test that updater works as expected (#10599)kaskavel
* Add workflow for installing latest version of netdata, building from source of this branch & running the updater. Add script build-dist to create the artifacts used for the update. * Add more distributions, arguments in updater script & accomodate review comment * Run updater within docker for 6 distributions * Remove unecessary change in updater * Correct netdata_version --> updater_version in check-updater script * Review comments: remove unused vars & replace == with =
2021-02-08Fixed handling of Docker image tags for release builds. (#10615)Austin S. Hemmelgarn
2021-02-01Add Alpine 3.13 and remove Alpine 3.9 from our CI. (#10542)Austin S. Hemmelgarn
2021-02-01Remove OpenSUSE Leap 15.1 from CI. (#10543)Austin S. Hemmelgarn
2021-01-15Switch to using GitHub Actions for publishing Docker images. (#10365)Austin S. Hemmelgarn
* Switch to using GitHub Actions for publishing Docker images. This simplifies handling of multiarch images and publishing to multiple registries, and unifies testing with the code actually being used to build and publish the images. This also removes a handful of scripts that are no longer needed due to this change, and switches our Dockerfile to not needing an architecture to be specified in a build argument, instead relying on proper multiarch docker image support. * Fix YAML syntax. * Add separate tagging for nightly and stable builds. * Correct YAML syntax errors.
2021-01-12Bump actions/upload-artifact from v1 to v2.2.2 (#10475)dependabot[bot]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from v1 to v2.2.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...e448a9b857ee2131e752b06002bf0e093c65e571) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-01-11GitHub action markdown link check update (#10474)Josh Soref
* Update github-action-markdown-link-check * Make pattern stricter * Ignore docs.stackpulse.io (400) It requires you to be logged in...
2020-12-10Switch to using official Docker actions for GHA CI. (#10335)Austin S. Hemmelgarn
This will make us more forward-portable, simplify eventual migration to GHA for release builds, and make it trivial to set up pushing images to multiple registries.
2020-12-09Explicitly set platform for Docker builds. (#10357)Austin S. Hemmelgarn
Needed to accomodate our new handling of our base and builder images.
2020-12-09Added numerous improvements to our Docker image. (#10308)Austin S. Hemmelgarn
* Initial cleanup of Docker entrypoint script. * Add linting for our Docker files. * Fix warnings reported by hadolint. * Add support for automatic claiming on startup. * Optimize Docker image structure. This shuffles some things around in the Docker image to cut down on the total number of layers and make the image more caching friendly, which will cut down on overall time required to both initially pull the image and time spent pulling updated versions of the image. It also shrinks the image size by about 2MB.
2020-11-18Fix Docs GitHub Action with ignore list and update (#10002)Joel Hans
* Add pi-hole.net to ignorelist * Update action for bugfixes * Add regex and test doc * Revert test
2020-11-06Fixed builds using particular versions of Clang. (#10155)Austin S. Hemmelgarn
* Add a CI check for building against Clang * Fix CFLAGS for libmosquitto/libwebsockets so builds work with Clang * Add fixes for libbpf, judy, and JSON-C. Co-authored-by: James Mills <prologic@shortcircuit.net.au>
2020-11-06Remove usage of deprecated GHA syntax. (#10154)Austin S. Hemmelgarn
2020-11-06Re-enable CentOS 8 CI checks. (#10156)Austin S. Hemmelgarn
2020-10-28Skip ReviewDog runs for PRs that don’t need them. (#10148)Austin S. Hemmelgarn
2020-10-26Updated distros for CI checks and package builds. (#10123)Austin S. Hemmelgarn
* Alpine 3.12 has been out for multiple months. * Fedora 33 is slated for release on 2020-10-27, the current beta is functionally a release preview. * Fedora 31 will be EOL as of 2020-11-27, any existing users should have updated by then. * Ubuntu 20.10 is slated for release on 2020-10-22, the currently available system images are functionally a release preview. * Ubuntu 19.10 went EOL on 2020-07-17. * Our packaging code was missing a number of distros we technically support which we appear to build packages correctly for.
2020-09-30Add a few changes that were missed by the systemd updater support. (#10007)Austin S. Hemmelgarn
* Add a check to ensure that the install leaves a clean repo. * Add a few changes that were missed by the systemd updater support.
2020-09-22Use non-interactive backend for debconf in Kinesis CI setup. (#9972)Austin S. Hemmelgarn
This prevents us from hanging waiting for non-existent input on debconf prompts.
2020-09-21Fix build for the AWS Kinesis exporting connector (#9823)Vladimir Kobal
Co-authored-by: James Mills <prologic@shortcircuit.net.au>
2020-08-27Ensure Arch Linux images are up to date in CI before running checks. (#9825)Austin S. Hemmelgarn
2020-08-03Require cloud build to succeed in make dist checks. (#9218)Austin S. Hemmelgarn
* Require cloud build to succeed in make dist checks. * perform dist check the same way we normally do builds. The default behavior in `kickstart.sh` is to run `install-required-packages.sh` with just the `netdata` package set, and we don't even document how to make it run with `netdata-all`, so a vast majority of users will only be running using the `netdata` package set. * More accurately recreate the environment a user would be building in. We should be testing our distfiles against our current version of `install-required-packages.sh`, not some pre-generated test image that we have to manage ina separaterepo. Also, disable telemetry for the test build so we don't accidentally pollute the stats.
2020-07-14Fixes cmake build failing if ACLK is disabled (#9537)Timotej S
* if we build claiming we must build aclk_common.c/h * Run unit tests on cmake config changes. Co-authored-by: Austin S. Hemmelgarn <austin@netdata.cloud>
2020-07-14Disable CentOS 8.x CI (temporarily) (#9538)James Mills
2020-07-14Remove Fedora 30 from CI. (#9274)Austin S. Hemmelgarn
It went EOL on 2020-05-26.
2020-06-12Remove Gentoo from CI (#9327)James Mills
2020-05-29Add CI check for building against LibreSSL (#8842) (#9216)James Mills
2020-05-27Fix error > emerge openssl-devel (#9141)Javier Pastor
* Fix error > emerge openssl-devel Add the correct package name for gentoo linux. Issue #9140 * Add missing package names for linux gentoo. * fix name package gentoo lm-sensors * add in workflows gentoo fix name package sys-apps/lm-sensors
2020-05-26Add CI for our Static Netdata builds (which kickstart-static64 uses) (#9130)James Mills
* Add tool to build the static x864_64 Netdata * Add error if the netdata binary is not statically linked * Add Github Workflow for testing static builds * Don't use docker run -i -t if not on a tty
2020-05-26Added required bundle for libuuid on ClearLinux. (#9060)Austin S. Hemmelgarn
* Added required bundle for libuuid on ClearLinux. * Add ClearLinux to build checks.
2020-05-22Fix docs CI to handle absolute links between docs (#9132)Joel Hans
* Check all files * Change md to trigger workflow * Change version * Try config and replacement * Path to workspace * Continuing to test * Fix link in prometheus doc as test
2020-05-22Fix paths to trigger docs CI workflow (#9128)Joel Hans
* Change paths in workflow and add test link * Remove fake link
2020-05-20Add GitHub CI job to check Markdown links during PRs (#9003)Joel Hans
* Add action * Add job * Add broken link * Correct syntax for yamllint * Remove broken link to test * Re-add broken link as example for PR * Fixes for James * Rename to docs.yml
2020-05-11Enable support for Netdata Cloud.Andrew Moss
This PR merges the feature-branch to make the cloud live. It contains the following work: Co-authored-by: Andrew Moss <1043609+amoss@users.noreply.github.com(opens in new tab)> Co-authored-by: Jacek Kolasa <jacek.kolasa@gmail.com(opens in new tab)> Co-authored-by: Austin S. Hemmelgarn <austin@netdata.cloud(opens in new tab)> Co-authored-by: James Mills <prologic@shortcircuit.net.au(opens in new tab)> Co-authored-by: Markos Fountoulakis <44345837+mfundul@users.noreply.github.com(opens in new tab)> Co-authored-by: Timotej S <6674623+underhood@users.noreply.github.com(opens in new tab)> Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com(opens in new tab)> * dashboard with new navbars, v1.0-alpha.9: PR #8478 * dashboard v1.0.11: netdata/dashboard#76 Co-authored-by: Jacek Kolasa <jacek.kolasa@gmail.com(opens in new tab)> * Added installer code to bundle JSON-c if it's not present. PR #8836 Co-authored-by: James Mills <prologic@shortcircuit.net.au(opens in new tab)> * Fix claiming config PR #8843 * Adds JSON-c as hard dep. for ACLK PR #8838 * Fix SSL renegotiation errors in old versions of openssl. PR #8840. Also - we have a transient problem with opensuse CI so this PR disables them with a commit from @prologic. Co-authored-by: James Mills <prologic@shortcircuit.net.au(opens in new tab)> * Fix claiming error handling PR #8850 * Added CI to verify JSON-C bundling code in installer PR #8853 * Make cloud-enabled flag in web/api/v1/info be independent of ACLK build success PR #8866 * Reduce ACLK_STABLE_TIMEOUT from 10 to 3 seconds PR #8871 * remove old-cloud related UI from old dashboard (accessible now via /old suffix) PR #8858 * dashboard v1.0.13 PR #8870 * dashboard v1.0.14 PR #8904 * Provide feedback on proxy setting changes PR #8895 * Change the name of the connect message to update during an ongoing session PR #8927 * Fetch active alarms from alarm_log PR #8944
2020-04-30Revert "Add CI check for building against LibreSSL (#8842)"James Mills
This reverts commit 8081102fa6ab587e400bbdf3d96abf86c40c8827.
2020-04-29Add CI check for building against LibreSSL (#8842)James Mills