This commit is contained in:
2023-11-19 22:29:24 +03:00
parent 9b68849d81
commit f52333ea02

View File

@@ -23,7 +23,7 @@ class SDK {
def taglist = steps.sh(script: "cd \"${steps.env.SHSSDK_DIR}\" && ls -1d */", returnStdout: true).trim().split('\n') def taglist = steps.sh(script: "cd \"${steps.env.SHSSDK_DIR}\" && ls -1d */", returnStdout: true).trim().split('\n')
for (tag in taglist) { for (tag in taglist) {
if (!f.startsWith('v') || !f.endsWith('/')) continue if (!tag.startsWith('v') || !tag.endsWith('/')) continue
try { try {
pl._root = steps.readJSON(file: "${steps.env.SHSSDK_DIR}/${tag}/platforms.json") pl._root = steps.readJSON(file: "${steps.env.SHSSDK_DIR}/${tag}/platforms.json")
pl.forEach ({ dist, cmake_toolchain -> pl.forEach ({ dist, cmake_toolchain ->