File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -591,7 +591,6 @@ nist_algs$(EXESUFX): nist_algs1$(OBJSUFX)
591591
592592# - stand alone signing tool
593593privkey.rsa :
594- export LD_LIBRARY_PATH=~ /OpenCryptographyKitC/openssl-1.1.1/
595594 ../openssl-1.1.1/apps/openssl genrsa -out privkey.rsa 2048
596595
597596pubkey.h : privkey.rsa
You can’t perform that action at this time.
0 commit comments