File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments