summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-05-29 21:17:17 +1000
committerGitHub <noreply@github.com>2020-05-29 07:17:17 -0400
commit9de4bb733d19035b68c067b8f05d5775e906d382 (patch)
tree9c236e2265b8c3175fcf02f48316baed705302c5 /.github
parent5087294d8174c16b0b46fc591f3fcc716cd20023 (diff)
Add CI check for building against LibreSSL (#8842) (#9216)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/checks.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index 1c2455e049..1e56431710 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -37,6 +37,22 @@ jobs:
- name: Compare generated Dashboard vs. Backed up Dashboard
run: |
diff -sNrdu /tmp/dashboard.js web/gui/dashboard.js
+ libressl-checks:
+ name: LibreSSL
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Build
+ run: >
+ docker run -v "$PWD":/netdata -w /netdata alpine:3.11 /bin/sh -c
+ 'apk add bash;
+ ./packaging/installer/install-required-packages.sh --dont-wait --non-interactive netdata;
+ apk del openssl openssl-dev;
+ apk add libressl libressl-dev;
+ autoreconf -ivf;
+ ./configure;
+ make;'
dist-checks:
name: Dist
runs-on: ubuntu-latest