Skip to content

Commit 478ea4b

Browse files
committed
test-release.sh: Add MLIR to the projects list
(cherry picked from commit ef465d0)
1 parent e40782f commit 478ea4b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

llvm/utils/release/test-release.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ do_openmp="yes"
4040
do_lld="yes"
4141
do_lldb="no"
4242
do_polly="yes"
43+
do_mlir="yes"
4344
BuildDir="`pwd`"
4445
ExtraConfigureFlags=""
4546
ExportBranch=""
@@ -72,6 +73,7 @@ function usage() {
7273
echo " -lldb Enable check-out & build lldb"
7374
echo " -no-lldb Disable check-out & build lldb (default)"
7475
echo " -no-polly Disable check-out & build Polly"
76+
echo " -no-mlir Disable check-out & build MLIR"
7577
}
7678

7779
while [ $# -gt 0 ]; do
@@ -167,6 +169,9 @@ while [ $# -gt 0 ]; do
167169
-no-polly )
168170
do_polly="no"
169171
;;
172+
-no-mlir )
173+
do_mlir="no"
174+
;;
170175
-help | --help | -h | --h | -\? )
171176
usage
172177
exit 0
@@ -253,6 +258,9 @@ fi
253258
if [ $do_polly = "yes" ]; then
254259
projects="$projects polly"
255260
fi
261+
if [ $do_mlir = "yes" ]; then
262+
projects="$projects mlir"
263+
fi
256264

257265
# Go to the build directory (may be different from CWD)
258266
BuildDir=$BuildDir/$RC

0 commit comments

Comments
 (0)