From 4ec41ed8a884b1dd0d13a9808bbf18c6fb788405 Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Tue, 29 Jun 2021 16:30:41 +0200 Subject: [PATCH] enable flang --- scripts/llvm-dependencies.yaml | 1 - scripts/pipeline_main.py | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/llvm-dependencies.yaml b/scripts/llvm-dependencies.yaml index f0f0310..5dd0681 100644 --- a/scripts/llvm-dependencies.yaml +++ b/scripts/llvm-dependencies.yaml @@ -80,7 +80,6 @@ excludedProjects: - openmp # TODO: check: kuhnel has trouble with the Perl installation - debuginfo-tests # test failing - polly # test failing - - flang # compilation failing with invalid compile arguments # test stuck, needs to be killed manually: instrprof-multiprocess.test - compiler-rt linux: diff --git a/scripts/pipeline_main.py b/scripts/pipeline_main.py index c2f762c..ee7bf2a 100755 --- a/scripts/pipeline_main.py +++ b/scripts/pipeline_main.py @@ -25,19 +25,18 @@ steps_generators = [ if __name__ == '__main__': scripts_refspec = os.getenv("ph_scripts_refspec", "main") no_cache = os.getenv('ph_no_cache') is not None - projects = os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly') log_level = os.getenv('ph_log_level', 'WARNING') notify_emails = list(filter(None, os.getenv('ph_notify_emails', '').split(','))) steps = [] steps.extend(generic_linux( - os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly'), + os.getenv('ph_projects', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly;flang'), False)) # FIXME: openmp is removed as it constantly fails. # TODO: Make this project list be evaluated through "choose_projects"(? as now we define "all" and exclusions in # two placess). steps.extend(generic_windows( - os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly'))) + os.getenv('ph_projects', 'llvm;clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly;flang'))) if os.getenv('ph_skip_generated') is None: for gen in steps_generators: