-
Notifications
You must be signed in to change notification settings - Fork 6
zpcprovider for sign/verify (ecdsa/eddsa) #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2033adc
76262a1
83b7a2c
c72d934
12499a0
358d3a7
d40df27
3064110
c3725d3
af3685f
9b3f6cd
04d6528
a6382df
593af57
4cf3e11
0ac80a4
6bce884
32eba87
4c63004
ffee7f7
640853f
b0f2c34
58e7422
bec6f40
2f3807b
28646ed
a3c6a65
970cfd6
5449263
2ac4e34
befe371
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,29 @@ | ||
| arch: s390x | ||
| os: linux | ||
| dist: jammy | ||
| language: cpp | ||
| dist: noble | ||
| language: c | ||
| sudo: required | ||
| env: | | ||
| CFLAGS="-O3 -Wextra -Wextra -Werror" | ||
| CXXFLAGS="-O3 -Wextra -Wextra -Werror" | ||
|
|
||
| compiler: | ||
| - gcc | ||
| - clang | ||
|
|
||
| before_install: | ||
| - sudo apt-get update -qq | ||
| - sudo apt-get install cmake libjson-c-dev | ||
| - sudo apt-get install -y cmake libjson-c-dev | ||
|
|
||
| before_script: | ||
| - git clone https://github.com/openssl/openssl.git | ||
| - pushd openssl | ||
| - git checkout --track origin/openssl-3.5 | ||
| - ./config -w 2> >(tee) | ||
| - make -s -j4 2> >(tee) | ||
| - export OPENSSL_DIR=$(pwd) | ||
| - export PATH=${OPENSSL_DIR}/apps/:${PATH} | ||
| - export LD_LIBRARY_PATH=${OPENSSL_DIR}:${LD_LIBRARY_PATH} | ||
| - popd | ||
|
|
||
| script: | ||
| - set -o pipefail | ||
| - mkdir build 2> >(tee) && cd build 2> >(tee) | ||
| - cmake -DBUILD_TEST=ON .. 2> >(tee) | ||
| - make 2> >(tee) | ||
| - cmake -B build -S . -DCMAKE_INCLUDE_PATH=${OPENSSL_DIR} -DCMAKE_LIBRARY_PATH=${OPENSSL_DIR} 2> >(tee) | ||
| - cmake --build build --target zpc 2> >(tee) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it be possible to also run some tests here? Probably not .....
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All current tests require at least some existing key files. Provider tests in addition require a sel-setup. I would like to postpone futher testing to upcoming releases. |
||
Uh oh!
There was an error while loading. Please reload this page.