diff options
| author | ruki <[email protected]> | 2024-08-24 07:22:42 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-08-24 07:22:42 +0800 |
| commit | c80898e12f88abe7df463bc64e0fb6bf081b8cdf (patch) | |
| tree | 778fc24c5ff2207419f0f06c60fff46b67739d03 /xmake/modules/utils/ci | |
| parent | 3ba77c15ccf34187b6678f277f2dd418433493c8 (diff) | |
| parent | d19c47eac0a44b0bfbbf2e4ce7cf98713720a245 (diff) | |
Merge pull request #5466 from xmake-io/toolchain
Improve to check and load toolchain
Diffstat (limited to 'xmake/modules/utils/ci')
| -rw-r--r-- | xmake/modules/utils/ci/packageskey.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/modules/utils/ci/packageskey.lua b/xmake/modules/utils/ci/packageskey.lua index 50e3e2d1b..a293009af 100644 --- a/xmake/modules/utils/ci/packageskey.lua +++ b/xmake/modules/utils/ci/packageskey.lua @@ -40,6 +40,10 @@ import("private.action.require.impl.utils.get_requires") -- function main(requires_raw) + -- suppress all logs + option.save() + option.set("quiet", true, {force = true}) + -- get requires and extra config local requires_extra = nil local requires, requires_extra = get_requires(requires_raw) @@ -54,6 +58,8 @@ function main(requires_raw) end table.sort(keys) keys = table.concat(keys, ",") + + option.restore() print(hash.uuid4(keys):gsub('-', ''):lower()) end |
