[openssl] OpenSSL_1_1_1-stable update
Richard Levitte
levitte at openssl.org
Sat Dec 19 02:04:39 UTC 2020
The branch OpenSSL_1_1_1-stable has been updated
via 5a5d87a936ceeca1648288e1efe4296687193b16 (commit)
from 3b5edb4a8c7c3af0697829425e6d44548dddfcbc (commit)
- Log -----------------------------------------------------------------
commit 5a5d87a936ceeca1648288e1efe4296687193b16
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Dec 17 21:55:07 2020 +0100
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 at fedoraproject.org>
Reviewed-by: Kurt Roeckx <kurt at roeckx.be>
(Merged from https://github.com/openssl/openssl/pull/13701)
(cherry picked from commit 8175476b81c6b54bfa1c8555b35561099b202c4d)
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/ci.yml | 26 ++++++++++++++++++++++++--
1 file changed, 24 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6073ba29bf..a4565e5499 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,6 +13,30 @@ on: [pull_request, push]
# - make="make -s"
jobs:
+ check_update:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout at 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 at 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
More information about the openssl-commits
mailing list