Skip to content

Commit

Permalink
[#197] Remove GCM-SIV tests from wolf build and fix bzip2 dependency …
Browse files Browse the repository at this point in the history
…on rhel
  • Loading branch information
Donnie-Ice committed Jul 29, 2024
1 parent e9210e8 commit 4c8d4f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Update
run: yum update -y
- name: Install Dependencies
run: yum install -y epel-release python38-devel libcurl-devel libgpg-error-devel git cmake gcc java-11-openjdk-devel openssl wget mariadb-devel mariadb-common mariadb-connector-c mariadb-connector-c-config mariadb-errmsg mariadb-gssapi-server
run: yum install -y epel-release python38-devel libcurl-devel libgpg-error-devel git cmake gcc java-11-openjdk-devel openssl wget bzip2 mariadb-devel mariadb-common mariadb-connector-c mariadb-connector-c-config mariadb-errmsg mariadb-gssapi-server
# Might want to trim this down, but these dependencies should work for KMC
- name: install lcov
run: yum install -y --enablerepo=epel lcov
Expand Down
8 changes: 5 additions & 3 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ add_test(NAME UT_TM_PROCESS
COMMAND ${PROJECT_BINARY_DIR}/bin/ut_tm_process
WORKING_DIRECTORY ${PROJECT_TEST_DIR})

add_test(NAME UT_AES_GCM_SIV
COMMAND ${PROJECT_BINARY_DIR}/bin/ut_aes_gcm_siv
WORKING_DIRECTORY ${PROJECT_TEST_DIR})
if(NOT ${CRYPTO_WOLFSSL})
add_test(NAME UT_AES_GCM_SIV
COMMAND ${PROJECT_BINARY_DIR}/bin/ut_aes_gcm_siv
WORKING_DIRECTORY ${PROJECT_TEST_DIR})
endif()

if(SA_FILE)
add_test(NAME UT_SA_SAVE
Expand Down

0 comments on commit 4c8d4f7

Please sign in to comment.