]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
GitHub CI: Add 'check-update' and 'check-docs'
authorRichard Levitte <levitte@openssl.org>
Thu, 17 Dec 2020 20:55:07 +0000 (21:55 +0100)
committerRichard Levitte <levitte@openssl.org>
Sat, 19 Dec 2020 02:04:29 +0000 (03:04 +0100)
'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)

(cherry picked from commit 8175476b81c6b54bfa1c8555b35561099b202c4d)

.github/workflows/ci.yml

index 6073ba29bf74a7589754be46453c6b29524fb55b..a4565e5499a4ebd047f4f156415cfed050576084 100644 (file)
@@ -13,6 +13,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:
@@ -23,8 +47,6 @@ jobs:
         run: make -s -j4
       - name: make test
         run: make test
-      - name: make doc-nits
-        run: make doc-nits
 
   basic_clang:
     runs-on: ubuntu-latest