Skip to content

Commit cf1ced6

Browse files
committed
user/yash: disable check on loongarch
1 parent 88acb0d commit cf1ced6

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

user/yash/template.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
url = "https://github.com/magicant/yash"
2323
source = f"{url}/releases/download/{pkgver}/yash-{pkgver}.tar.xz"
2424
sha256 = "a214966f4ff8b293aa5521a4d3ef6e87d707579eee616aa2f8218edaa920d447"
25+
# check may be off
26+
options = []
27+
28+
if self.profile().arch in ["loongarch64"]:
29+
# some permissions tests fail, same behavior observed elsewhere
30+
options += ["!check"]
2531

2632

2733
def post_install(self):

0 commit comments

Comments
 (0)