File tree 2 files changed +0
-14
lines changed
2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -867,22 +867,18 @@ jobs:
867
867
run : python3 scripts/run_tests.py --running-type="threads"
868
868
env :
869
869
OMP_NUM_THREADS : 1
870
- CLANG_BUILD : 1
871
870
- name : Run tests (threads, num_threads=2)
872
871
run : python3 scripts/run_tests.py --running-type="threads"
873
872
env :
874
873
OMP_NUM_THREADS : 2
875
- CLANG_BUILD : 1
876
874
- name : Run tests (threads, num_threads=3)
877
875
run : python3 scripts/run_tests.py --running-type="threads"
878
876
env :
879
877
OMP_NUM_THREADS : 3
880
- CLANG_BUILD : 1
881
878
- name : Run tests (threads, num_threads=4)
882
879
run : python3 scripts/run_tests.py --running-type="threads"
883
880
env :
884
881
OMP_NUM_THREADS : 4
885
- CLANG_BUILD : 1
886
882
windows-clang-test-extended :
887
883
needs :
888
884
- windows-clang-test
@@ -911,22 +907,18 @@ jobs:
911
907
run : python3 scripts/run_tests.py --running-type="threads"
912
908
env :
913
909
OMP_NUM_THREADS : 5
914
- CLANG_BUILD : 1
915
910
- name : Run tests (threads, num_threads=7)
916
911
run : python3 scripts/run_tests.py --running-type="threads"
917
912
env :
918
913
OMP_NUM_THREADS : 7
919
- CLANG_BUILD : 1
920
914
- name : Run tests (threads, num_threads=11)
921
915
run : python3 scripts/run_tests.py --running-type="threads"
922
916
env :
923
917
OMP_NUM_THREADS : 11
924
- CLANG_BUILD : 1
925
918
- name : Run tests (threads, num_threads=13)
926
919
run : python3 scripts/run_tests.py --running-type="threads"
927
920
env :
928
921
OMP_NUM_THREADS : 13
929
- CLANG_BUILD : 1
930
922
ubuntu-gcc-build-codecov :
931
923
needs :
932
924
- ubuntu-gcc-test-extended
Original file line number Diff line number Diff line change @@ -85,9 +85,6 @@ def run_threads(self):
85
85
self .__run_exec (f"{ self .work_dir / 'seq_func_tests' } { self .__get_gtest_settings (3 )} " )
86
86
self .__run_exec (f"{ self .work_dir / 'stl_func_tests' } { self .__get_gtest_settings (3 )} " )
87
87
self .__run_exec (f"{ self .work_dir / 'tbb_func_tests' } { self .__get_gtest_settings (3 )} " )
88
-
89
- if os .environ .get ("CLANG_BUILD" ) == "1" :
90
- return
91
88
self .__run_exec (f"{ self .work_dir / 'omp_func_tests' } { self .__get_gtest_settings (3 )} " )
92
89
93
90
def run_core (self ):
@@ -97,9 +94,6 @@ def run_core(self):
97
94
self .__run_exec (f"{ self .work_dir / 'core_func_tests' } { self .__get_gtest_settings (1 )} " )
98
95
99
96
def run_processes (self , additional_mpi_args ):
100
- if os .environ .get ("CLANG_BUILD" ) == "1" :
101
- return
102
-
103
97
proc_count = os .environ .get ("PROC_COUNT" )
104
98
if proc_count is None :
105
99
raise EnvironmentError ("Required environment variable 'PROC_COUNT' is not set." )
You can’t perform that action at this time.
0 commit comments