Skip to content

Commit 958353b

Browse files
committed
clang-build
1 parent fcbf3ed commit 958353b

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -867,22 +867,18 @@ jobs:
867867
run: python3 scripts/run_tests.py --running-type="threads"
868868
env:
869869
OMP_NUM_THREADS: 1
870-
CLANG_BUILD: 1
871870
- name: Run tests (threads, num_threads=2)
872871
run: python3 scripts/run_tests.py --running-type="threads"
873872
env:
874873
OMP_NUM_THREADS: 2
875-
CLANG_BUILD: 1
876874
- name: Run tests (threads, num_threads=3)
877875
run: python3 scripts/run_tests.py --running-type="threads"
878876
env:
879877
OMP_NUM_THREADS: 3
880-
CLANG_BUILD: 1
881878
- name: Run tests (threads, num_threads=4)
882879
run: python3 scripts/run_tests.py --running-type="threads"
883880
env:
884881
OMP_NUM_THREADS: 4
885-
CLANG_BUILD: 1
886882
windows-clang-test-extended:
887883
needs:
888884
- windows-clang-test
@@ -911,22 +907,18 @@ jobs:
911907
run: python3 scripts/run_tests.py --running-type="threads"
912908
env:
913909
OMP_NUM_THREADS: 5
914-
CLANG_BUILD: 1
915910
- name: Run tests (threads, num_threads=7)
916911
run: python3 scripts/run_tests.py --running-type="threads"
917912
env:
918913
OMP_NUM_THREADS: 7
919-
CLANG_BUILD: 1
920914
- name: Run tests (threads, num_threads=11)
921915
run: python3 scripts/run_tests.py --running-type="threads"
922916
env:
923917
OMP_NUM_THREADS: 11
924-
CLANG_BUILD: 1
925918
- name: Run tests (threads, num_threads=13)
926919
run: python3 scripts/run_tests.py --running-type="threads"
927920
env:
928921
OMP_NUM_THREADS: 13
929-
CLANG_BUILD: 1
930922
ubuntu-gcc-build-codecov:
931923
needs:
932924
- ubuntu-gcc-test-extended

scripts/run_tests.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,6 @@ def run_threads(self):
8585
self.__run_exec(f"{self.work_dir / 'seq_func_tests'} {self.__get_gtest_settings(3)}")
8686
self.__run_exec(f"{self.work_dir / 'stl_func_tests'} {self.__get_gtest_settings(3)}")
8787
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
9188
self.__run_exec(f"{self.work_dir / 'omp_func_tests'} {self.__get_gtest_settings(3)}")
9289

9390
def run_core(self):
@@ -97,9 +94,6 @@ def run_core(self):
9794
self.__run_exec(f"{self.work_dir / 'core_func_tests'} {self.__get_gtest_settings(1)}")
9895

9996
def run_processes(self, additional_mpi_args):
100-
if os.environ.get("CLANG_BUILD") == "1":
101-
return
102-
10397
proc_count = os.environ.get("PROC_COUNT")
10498
if proc_count is None:
10599
raise EnvironmentError("Required environment variable 'PROC_COUNT' is not set.")

0 commit comments

Comments
 (0)