Skip to content
Snippets Groups Projects
Unverified Commit 196dcdb3 authored by Bensong Liu's avatar Bensong Liu
Browse files

skip ICPC test if icpc is not working

parent d65ebaee
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ phases:
commands:
- g++ --version
- clang++ --version
- icpc --version
# - icpc --version # Intel CC on build machine expired...
build:
commands:
- make
......
#!/bin/bash
for cxx in g++ clang++ icpc
if icpc --version; then
compilers=(g++ clang++ icpc)
else
compilers=(g++ clang++)
fi
for cxx in $compilers
do
for std in 14 17
do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment