diff options
| author | ruki <[email protected]> | 2021-01-03 10:32:23 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-01-03 10:32:23 +0800 |
| commit | 777001165dd469733d927d8ddea9de8fcb6736de (patch) | |
| tree | a7ba14ae28e713f973b6769c733cbc5fbb003a88 /tests/projects/package/multiconfig/test.lua | |
| parent | 63722e7f41c83ec3baabec203f325b29f5709615 (diff) | |
fix tests on ci
Diffstat (limited to 'tests/projects/package/multiconfig/test.lua')
| -rw-r--r-- | tests/projects/package/multiconfig/test.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/projects/package/multiconfig/test.lua b/tests/projects/package/multiconfig/test.lua index 5050f2dd4..8644a2af9 100644 --- a/tests/projects/package/multiconfig/test.lua +++ b/tests/projects/package/multiconfig/test.lua @@ -1,5 +1,6 @@ function main(t) - if is_plat(os.subhost()) and is_arch(os.subarch()) then + -- only for x86/x64, because it will take too long time on ci with arm/mips + if os.subarch():startswith("x") or os.subarch() == "i386" then t:build() end end |
