Skip to content

Commit 9ef9131

Browse files
author
smcmahonibm
committed
Build break
1 parent dc1340a commit 9ef9131

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

.github/workflows/.workflowTest.yml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ jobs:
2525
- uses: actions/checkout@v3
2626

2727
- name: 64-bit Linux debug compile
28+
# export LD_LIBRARY_PATH=/home/runner/work/OpenCryptographyKitC/OpenCryptographyKitC/openssl-1.1.1/
2829
run: |
29-
cd icc
30-
make OPSYS=AMD64_LINUX CONFIG=debug create_all
31-
export LD_LIBRARY_PATH=/home/runner/work/OpenCryptographyKitC/OpenCryptographyKitC/openssl-1.1.1/
32-
make -k OPSYS=AMD64_LINUX CONFIG=debug all
33-
make -k OPSYS=AMD64_LINUX CONFIG=debug tests
34-
make -k OPSYS=AMD64_LINUX CONFIG=debug show_config
35-
cd ..
30+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=debug create_all
31+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=debug all
32+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=debug tests
33+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=debug show_config
3634
3735
ICC-Compile:
3836
# a compile only -no test -quick check
@@ -42,14 +40,10 @@ jobs:
4240

4341
- name: 64-bit Linux release compile
4442
run: |
45-
cd icc
46-
make -k OPSYS=AMD64_LINUX CONFIG=release create_all
47-
make -k OPSYS=AMD64_LINUX CONFIG=release all
48-
make -k OPSYS=AMD64_LINUX CONFIG=release iccpkg
49-
make -k OPSYS=AMD64_LINUX CONFIG=release show_config
50-
cd ..
51-
cd iccpkg
52-
make -k OPSYS=AMD64_LINUX CONFIG=release all
53-
cd ..
43+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=release create_all
44+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=release all
45+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=release iccpkg
46+
make -C icc -k OPSYS=AMD64_LINUX CONFIG=release show_config
47+
make -C iccpkg -k OPSYS=AMD64_LINUX CONFIG=release all
5448
5549

icc/icctest.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3531,6 +3531,15 @@ int doUnitTest(int test,char *fips, int unicode)
35313531

35323532
return rv;
35333533
}
3534+
3535+
/* from iccversion.h*/
3536+
#ifndef ICC_GIT_BRANCH
3537+
#define ICC_GIT_BRANCH "n/a"
3538+
#endif
3539+
#ifndef ICC_GIT_HASH
3540+
#define ICC_GIT_HASH "n/a"
3541+
#endif
3542+
35343543
static void usage(char *prgname,char *text)
35353544
{
35363545
static const char* ICC_vinfo =

0 commit comments

Comments
 (0)