Skip to content

Commit d95cdc5

Browse files
committed
Set LD_LIBRARY_PATH
Signed-off-by: Robin Dubey <[email protected]>
1 parent 0805dda commit d95cdc5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/.workflowTest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# We can add more jobs here for different OS
2020
ICC-Config-debug:
2121
# The type of runner that the job will run on
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-20.04
2323
steps:
2424
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2525
- uses: actions/checkout@v3
@@ -28,21 +28,23 @@ jobs:
2828
run: |
2929
cd icc
3030
make OPSYS=AMD64_LINUX CONFIG=debug create_all
31+
export LD_LIBRARY_PATH=/home/runner/work/OpenCryptographyKitC/OpenCryptographyKitC/openssl-1.1.1/
3132
make -k OPSYS=AMD64_LINUX CONFIG=debug all
3233
make -k OPSYS=AMD64_LINUX CONFIG=debug tests
3334
make -k OPSYS=AMD64_LINUX CONFIG=debug show_config
3435
cd ..
3536
3637
ICC-Compile:
3738
# a compile only -no test -quick check
38-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-20.04
3940
steps:
4041
- uses: actions/checkout@v3
4142

4243
- name: 64-bit Linux release compile
4344
run: |
4445
cd icc
4546
make -k OPSYS=AMD64_LINUX CONFIG=release create_all
47+
export LD_LIBRARY_PATH=/home/runner/work/OpenCryptographyKitC/OpenCryptographyKitC/openssl-1.1.1/
4648
make -k OPSYS=AMD64_LINUX CONFIG=release all
4749
make -k OPSYS=AMD64_LINUX CONFIG=release iccpkg
4850
make -k OPSYS=AMD64_LINUX CONFIG=release show_config

icc/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,6 @@ nist_algs$(EXESUFX): nist_algs1$(OBJSUFX)
591591

592592
#- stand alone signing tool
593593
privkey.rsa:
594-
export LD_LIBRARY_PATH=~/OpenCryptographyKitC/openssl-1.1.1/
595594
../openssl-1.1.1/apps/openssl genrsa -out privkey.rsa 2048
596595

597596
pubkey.h: privkey.rsa

0 commit comments

Comments
 (0)