diff options
| author | ruki <[email protected]> | 2022-10-20 11:20:37 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-20 11:20:37 +0800 |
| commit | 5e10a17b2602d756bb918b75ebb9d4fa3f9e47ea (patch) | |
| tree | e12a91a696b62f011113caae5907fe7be39b4b31 /tests/projects/package/components/test.lua | |
| parent | e6affabd6e20bbb179fea1f315414142cef650e3 (diff) | |
| parent | 2183a9d1ac3d63351a36b5a855c7fce02405d374 (diff) | |
Merge pull request #2932 from xmake-io/components
Add package components support
Diffstat (limited to 'tests/projects/package/components/test.lua')
| -rw-r--r-- | tests/projects/package/components/test.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/projects/package/components/test.lua b/tests/projects/package/components/test.lua new file mode 100644 index 000000000..4964fecaa --- /dev/null +++ b/tests/projects/package/components/test.lua @@ -0,0 +1,12 @@ +function main(t) + + -- freebsd ci is slower + if is_host("bsd") then + return + end + + -- 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 |
