Skip to content

Commit ceb9efb

Browse files
authored
Merge pull request #364 from zowe/update-smoke-tests
2 parents 36bf505 + 4a9d8db commit ceb9efb

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

scripts/smoke-test-components.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,7 @@ function getTags(tagArray) {
5959
continue;
6060
}
6161

62-
if (process.arch == "arm64" && name == "db2-for-zowe-cli") {
63-
// Don't even try, we don't expect this to work
64-
success = false;
65-
} else {
66-
success = await test(name, tag);
67-
}
62+
success = await test(name, tag);
6863
results.push({
6964
arch: process.arch,
7065
platform: process.platform,

scripts/smoke-test-status.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,10 @@ const glob = require("glob");
1414
object.sort((a, b) => a.compare.localeCompare(b.compare));
1515

1616
for (const entry of object){
17-
if (entry.arch == "arm64" && entry.package == "db2-for-zowe-cli") {
18-
list.push([entry.package, entry.tag, entry.platform, entry.arch, "Not Supported 😢"]);
19-
} else {
20-
list.push([entry.package, entry.tag, entry.platform, entry.arch, entry.success ? "Succeeded ✅" : "Failed ❌"]);
21-
if (successObj[entry.package] == undefined) { successObj[entry.package] = {};}
22-
if (successObj[entry.package][entry.tag] == undefined || successObj[entry.package][entry.tag] != false) {
23-
successObj[entry.package][entry.tag] = entry.success;
24-
}
17+
list.push([entry.package, entry.tag, entry.platform, entry.arch, entry.success ? "Succeeded ✅" : "Failed ❌"]);
18+
if (successObj[entry.package] == undefined) { successObj[entry.package] = {};}
19+
if (successObj[entry.package][entry.tag] == undefined || successObj[entry.package][entry.tag] != false) {
20+
successObj[entry.package][entry.tag] = entry.success;
2521
}
2622
}
2723

0 commit comments

Comments
 (0)