Skip to content

Commit d114dc2

Browse files
committed
new job added for config release
Signed-off-by: Robin Dubey <[email protected]>
1 parent 3078906 commit d114dc2

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/.workflowTest.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2525
- uses: actions/checkout@v3
26-
26+
2727
- name: 64-bit Linux debug compile
2828
run: |
2929
cd icc
@@ -32,4 +32,23 @@ jobs:
3232
make -k OPSYS=AMD64_LINUX CONFIG=debug tests
3333
make -k OPSYS=AMD64_LINUX CONFIG=debug show_config
3434
cd ..
35+
36+
ICC-Compile:
37+
# a compile only -no test -quick check
38+
runs-on: ubuntu-latest
39+
steps:
40+
- uses: actions/checkout@v3
41+
42+
- name: 64-bit Linux release compile
43+
run: |
44+
cd icc
45+
make -k OPSYS=AMD64_LINUX CONFIG=release create_all
46+
make -k OPSYS=AMD64_LINUX CONFIG=release all
47+
make -k OPSYS=AMD64_LINUX CONFIG=release iccpkg
48+
make -k OPSYS=AMD64_LINUX CONFIG=release show_config
49+
cd ..
50+
cd iccpkg
51+
make -k OPSYS=AMD64_LINUX CONFIG=release all
52+
cd ..
53+
3554

0 commit comments

Comments
 (0)