Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
10.0.x

- name: Install native build prerequisites
run: sudo apt-get update && sudo apt-get install -y cmake build-essential patchelf
run: sudo apt-get update && sudo apt-get install -y cmake build-essential patchelf libssl-dev

- name: Display Tools Versions
run: |
Expand Down Expand Up @@ -93,6 +93,11 @@ jobs:
dotnet-version: |
8.0.x
10.0.x

- name: Install OpenSSL
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md

- name: Display Tools Versions
run: |
Expand Down
4 changes: 2 additions & 2 deletions build/native-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ cmake -S "$SOURCE_DIR" -B "$BUILD_DIR" \
-DBUILD_IDLC=ON \
-DBUILD_TESTING=OFF \
-DBUILD_EXAMPLES=OFF \
-DENABLE_SSL=OFF \
-DENABLE_SSL=ON \
-DENABLE_SHM=OFF \
-DENABLE_SECURITY=OFF
-DENABLE_SECURITY=ON

# ----------------------------------------------------------------
# [2/3] Build & Install
Expand Down
4 changes: 2 additions & 2 deletions build/native-win.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ try {
"-DBUILD_IDLC=ON",
"-DBUILD_TESTING=OFF",
"-DBUILD_EXAMPLES=OFF",
"-DENABLE_SSL=OFF",
"-DENABLE_SSL=ON",
"-DENABLE_SHM=OFF",
"-DENABLE_SECURITY=OFF"
"-DENABLE_SECURITY=ON"
)

foreach ($gen in $cmakeGenerators) {
Expand Down