[llvm-branch-commits] [llvm] 478ea4b - test-release.sh: Add MLIR to the projects list

Hans Wennborg via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jan 30 05:32:03 PST 2020


Author: Hans Wennborg
Date: 2020-01-30T14:31:48+01:00
New Revision: 478ea4b46d3fc33f4793b4ce8dd0ef8a5a637a88

URL: https://github.com/llvm/llvm-project/commit/478ea4b46d3fc33f4793b4ce8dd0ef8a5a637a88
DIFF: https://github.com/llvm/llvm-project/commit/478ea4b46d3fc33f4793b4ce8dd0ef8a5a637a88.diff

LOG: test-release.sh: Add MLIR to the projects list

(cherry picked from commit ef465d0ad2b98cae6fd6f6c450649f40e67fa24b)

Added: 
    

Modified: 
    llvm/utils/release/test-release.sh

Removed: 
    


################################################################################
diff  --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh
index 5165c95166b1..3cd101ea04a8 100755
--- a/llvm/utils/release/test-release.sh
+++ b/llvm/utils/release/test-release.sh
@@ -40,6 +40,7 @@ do_openmp="yes"
 do_lld="yes"
 do_lldb="no"
 do_polly="yes"
+do_mlir="yes"
 BuildDir="`pwd`"
 ExtraConfigureFlags=""
 ExportBranch=""
@@ -72,6 +73,7 @@ function usage() {
     echo " -lldb                Enable check-out & build lldb"
     echo " -no-lldb             Disable check-out & build lldb (default)"
     echo " -no-polly            Disable check-out & build Polly"
+    echo " -no-mlir             Disable check-out & build MLIR"
 }
 
 while [ $# -gt 0 ]; do
@@ -167,6 +169,9 @@ while [ $# -gt 0 ]; do
         -no-polly )
             do_polly="no"
             ;;
+        -no-mlir )
+            do_mlir="no"
+            ;;
         -help | --help | -h | --h | -\? )
             usage
             exit 0
@@ -253,6 +258,9 @@ fi
 if [ $do_polly = "yes" ]; then
   projects="$projects polly"
 fi
+if [ $do_mlir = "yes" ]; then
+  projects="$projects mlir"
+fi
 
 # Go to the build directory (may be 
diff erent from CWD)
 BuildDir=$BuildDir/$RC


        


More information about the llvm-branch-commits mailing list