Skip to content

Commit

Permalink
Githubactions: Update Linux OS's
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Dec 2, 2024
1 parent 8b03831 commit eca1fed
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 26 deletions.
37 changes: 22 additions & 15 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
fail-fast: false
matrix:
include:
- environment: "ubuntu:24.04"
- environment: "ubuntu:24.10"
cc: "gcc"
upload_for_test: "false"
- environment: "ubuntu:24.04"
- environment: "ubuntu:24.10"
cc: "clang"
upload_for_test: "false"
- environment: "ubuntu:23.10"
- environment: "ubuntu:24.04"
cc: "gcc"
upload_for_test: "false"
- environment: "ubuntu:23.10"
- environment: "ubuntu:24.04"
cc: "clang"
upload_for_test: "false"
- environment: "ubuntu:22.04"
Expand All @@ -32,15 +32,6 @@ jobs:
- environment: "ubuntu:20.04"
cc: "clang"
upload_for_test: "false"
# - environment: "ubuntu:18.04"
# cc: "gcc"
# upload_for_test: "false"
# - environment: "ubuntu:16.04"
# cc: "gcc"
# upload_for_test: "false"
# - environment: "ubuntu:14.04"
# cc: "gcc"
# upload_for_test: "false"
- environment: "debian:12"
cc: "gcc"
upload_for_test: "false"
Expand Down Expand Up @@ -102,6 +93,15 @@ jobs:
# append the following flags: -Wno-missing-braces -Wno-missing-field-initializers -Wno-implicit-function-declaration
sed -i 's/-Wall -Wextra -Werror/-Wall -Wextra -Werror -Wno-missing-braces -Wno-missing-field-initializers -Wno-implicit-function-declaration/' cmake/SecurityFlags.cmake
- name: apply environment specific changes to CMakeLists.txt
working-directory: yubihsm-shell
if: ${{ matrix.environment == 'ubuntu:24.10' }}
run: |
# ubuntu 24.10 comes with _FORTIFY_SOURCE already set
sed -i 's/add_definitions (-D_FORTIFY_SOURCE=2)/add_definitions (-D_FORTIFY_SOURCE=3)/' cmake/SecurityFlags.cmake
# Set PCSC flags
sed -i 's/#SET(CMAKE_C_FLAGS/SET(CMAKE_C_FLAGS/' ykhsmauth/CMakeLists.txt
- name: do build
working-directory: yubihsm-shell
env:
Expand Down Expand Up @@ -172,10 +172,10 @@ jobs:
- environment: "fedora:40"
cc: "clang"
upload_for_test: "false"
- environment: "fedora:39"
- environment: "fedora:41"
cc: "gcc"
upload_for_test: "false"
- environment: "fedora:39"
- environment: "fedora:41"
cc: "clang"
upload_for_test: "false"

Expand Down Expand Up @@ -224,6 +224,13 @@ jobs:
# append the following flags: -Wno-missing-braces -Wno-missing-field-initializers -Wno-implicit-function-declaration
sed -i 's/-Wall -Wextra -Werror/-Wall -Wextra -Werror -Wno-missing-braces -Wno-missing-field-initializers/' cmake/SecurityFlags.cmake
- name: apply environment specific changes to CMakeLists.txt
working-directory: yubihsm-shell
if: ${{ matrix.environment == 'fedora:41' }}
run: |
# Set PCSC flags
sed -i 's/#SET(CMAKE_C_FLAGS/SET(CMAKE_C_FLAGS/' ykhsmauth/CMakeLists.txt
- name: do build
working-directory: yubihsm-shell
env:
Expand Down
28 changes: 20 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,10 @@ jobs:
fail-fast: false
matrix:
environment: [
"ubuntu:24.10",
"ubuntu:24.04",
"ubuntu:23.10",
"ubuntu:22.04",
"ubuntu:20.04",
# "ubuntu:18.04",
# "ubuntu:16.04",
# "ubuntu:14.04",
"debian:12",
"debian:11",
]
Expand Down Expand Up @@ -211,10 +208,18 @@ jobs:
- name: apply environment specific changes to CMakeLists.txt
working-directory: yubihsm-shell
if: ${{ matrix.environment == 'ubuntu:24.04' }}
env:
DOCKER_IMAGE: ${{ matrix.environment }}
run: |
# ubuntu 24.04 comes with _FORTIFY_SOURCE already set
sed -i 's/add_definitions (-D_FORTIFY_SOURCE=2)/add_definitions (-D_FORTIFY_SOURCE=3)/' cmake/SecurityFlags.cmake
if [ "$DOCKER_IMAGE" = "ubuntu:24.04" ] || [ "$DOCKER_IMAGE" = "ubuntu:24.10" ]; then
# ubuntu 24.04 and above come with _FORTIFY_SOURCE already set
sed -i 's/add_definitions (-D_FORTIFY_SOURCE=2)/add_definitions (-D_FORTIFY_SOURCE=3)/' cmake/SecurityFlags.cmake
fi
if [ "$DOCKER_IMAGE" = "ubuntu:24.10" ]; then
# Set PCSC flags
sed -i 's/#SET(CMAKE_C_FLAGS/SET(CMAKE_C_FLAGS/' ykhsmauth/CMakeLists.txt
fi
- name: extract platform name
env:
Expand Down Expand Up @@ -288,8 +293,8 @@ jobs:
fail-fast: false
matrix:
environment: [
"fedora:39",
"fedora:40",
"fedora:41",
]

name: build on ${{ matrix.environment }}
Expand Down Expand Up @@ -317,6 +322,13 @@ jobs:
# append the following flags: -Wno-missing-braces -Wno-missing-field-initializers -Wno-implicit-function-declaration
sed -i 's/-Wall -Wextra -Werror/-Wall -Wextra -Werror -Wno-missing-braces -Wno-missing-field-initializers/' cmake/SecurityFlags.cmake
- name: apply environment specific changes to ykhsmauth/CMakeLists.txt
working-directory: yubihsm-shell
if: ${{ matrix.environment == 'fedora:41' }}
run: |
# Set PCSC flags
sed -i 's/#SET(CMAKE_C_FLAGS/SET(CMAKE_C_FLAGS/' ykhsmauth/CMakeLists.txt
- name: extract platform name
env:
DOCKER_IMAGE: ${{ matrix.environment }}
Expand Down
5 changes: 2 additions & 3 deletions ykhsmauth/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ if(WIN32)
set(SOURCE ${SOURCE} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
endif(WIN32)

include_directories (
${LIBPCSC_INCLUDEDIR}
)
include_directories (${LIBPCSC_INCLUDEDIR})
#SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBPCSC_CFLAGS}")

add_library (ykhsmauth SHARED ${SOURCE})

Expand Down

0 comments on commit eca1fed

Please sign in to comment.