summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-12-17 21:55:07 +0100
committerRichard Levitte <levitte@openssl.org>2020-12-17 22:06:38 +0100
commit8175476b81c6b54bfa1c8555b35561099b202c4d (patch)
treeb3f0d1c79e20c15a17e4aebcc16394e9657c2182 /.github
parentea7808143d6880db0cb9eb9cf6694c23958d32b0 (diff)
GitHub CI: Add 'check-update' and 'check-docs'
'check-update' runs a 'make update' to check that it wasn't forgotten. 'check-docs' runs 'make doc-nits'. We have that as a separate job to make it more prominent. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/13701)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml26
1 files changed, 24 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 601249f6f4..4793246b5a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,6 +12,30 @@ on: [pull_request, push]
# - make="make -s"
jobs:
+ check_update:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings && perl configdata.pm --dump
+ - name: make build_generated
+ run: make -s build_generated
+ - name: make update
+ run: make -s update
+ - name: git diff
+ run: git diff --exit-code
+
+ check_docs:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings && perl configdata.pm --dump
+ - name: make build_generated
+ run: make -s build_generated
+ - name: make doc-nits
+ run: make doc-nits
+
basic_gcc:
runs-on: ubuntu-latest
steps:
@@ -22,8 +46,6 @@ jobs:
run: make -s -j4
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
- - name: make doc-nits
- run: make doc-nits
basic_clang:
runs-on: ubuntu-latest