File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -1820,6 +1820,8 @@ variations:
1820
1820
nvidia-inference-server :
1821
1821
version : r4.1
1822
1822
tags : _go
1823
+ nvidia-harness :
1824
+ tags : _v4.0
1823
1825
intel-harness :
1824
1826
tags : _v4.1
1825
1827
nvidia-scratch-space :
@@ -1841,6 +1843,8 @@ variations:
1841
1843
nvidia-inference-server :
1842
1844
version : r4.0
1843
1845
tags : _mlcommons
1846
+ nvidia-harness :
1847
+ tags : _v4.0
1844
1848
intel-harness :
1845
1849
tags : _v4.1
1846
1850
inference-src :
@@ -1862,6 +1866,8 @@ variations:
1862
1866
nvidia-inference-server :
1863
1867
version : r5.0
1864
1868
tags : _mlcommons
1869
+ nvidia-harness :
1870
+ tags : _v5.0
1865
1871
intel-harness :
1866
1872
tags : _v4.1
1867
1873
inference-src :
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ def preprocess(i):
27
27
env ['MLC_SUDO' ] = '' # root user does not need sudo
28
28
env ['MLC_SUDO_USER' ] = "yes"
29
29
else :
30
- if can_execute_sudo_without_password (
31
- logger ) or prompt_sudo (logger ) == 0 :
30
+ if not is_true ( env . get ( 'MLC_SKIP_SUDO' )) and ( can_execute_sudo_without_password (
31
+ logger ) or prompt_sudo (logger ) == 0 ) :
32
32
env ['MLC_SUDO_USER' ] = "yes"
33
33
env ['MLC_SUDO' ] = 'sudo'
34
34
Original file line number Diff line number Diff line change @@ -662,6 +662,9 @@ variations:
662
662
postfix :
663
663
env :
664
664
MLC_SYS_UTIL_NAME : postfix
665
+ MLC_SYS_UTIL_VERSION_CMD : postconf mail_version
666
+ MLC_SYS_UTIL_VERSION_RE : mail_version = \b(\d+\.\d+(?:\.\d+)?)\b
667
+ MLC_TMP_VERSION_DETECT_GROUP_NUMBER : 1
665
668
new_env_keys :
666
669
- MLC_POSTFIX_VERSION
667
670
state :
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ prehook_deps:
27
27
- ' yes'
28
28
names : llvm-install
29
29
reuse_version : true
30
+ inherit_variation_tags : true
31
+ skip_inherit_variation_groups :
32
+ - install-src
30
33
tags : install,llvm
31
34
sort : 100
32
35
tags :
@@ -39,13 +42,24 @@ tags:
39
42
uid : 99832a103ed04eb8
40
43
variations :
41
44
from-prebuilt :
45
+ group : install-src
46
+ default : true
42
47
ad :
43
48
llvm-install :
44
49
tags : prebuilt
45
50
from-src :
51
+ group : install-src
46
52
ad :
47
53
llvm-install :
48
54
tags : src,_clang
49
55
path.#:
50
56
env :
51
57
MLC_LLVM_DIR_PATH : ' #'
58
+ release : {}
59
+ version.#: {}
60
+ branch.#: {}
61
+ runtimes.#: {}
62
+ flang : {}
63
+ sha.#: {}
64
+ tag.#: {}
65
+
You can’t perform that action at this time.
0 commit comments