Skip to content

Commit aa9d10a

Browse files
committed
try
1 parent c22daac commit aa9d10a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,17 @@ jobs:
5050
5151
- name: Run Integration Tests .NET 2
5252
run: |
53+
# ml-kem requires openssl 3.5.0+ https://learn.microsoft.com/en-us/dotnet/standard/security/cross-platform-cryptography#ml-kem
5354
wget https://github.com/openssl/openssl/releases/download/openssl-3.5.4/openssl-3.5.4.tar.gz
5455
tar -xzvf openssl-3.5.4.tar.gz
5556
cd openssl-3.5.4
56-
./Configure --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib \
57-
'-Wl,--enable-new-dtags,-rpath,$(LIBRPATH)'
57+
./Configure --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib
5858
make
5959
sudo make install
60+
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/ssl
61+
sudo ldconfig
6062
openssl version
61-
sudo systemctl restart sshd.service
63+
sudo systemctl restart ssh
6264
cd ..
6365
dotnet test \
6466
-f net10.0 \

0 commit comments

Comments
 (0)