mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
excluded arm from testcontainer runs
This commit is contained in:
parent
e80a6ef728
commit
e97fd40b54
1 changed files with 2 additions and 2 deletions
|
@ -5,8 +5,8 @@ const mqtt = require("mqtt");
|
|||
const { MqttMonitorType } = require("../../server/monitor-types/mqtt");
|
||||
const { UP, PENDING } = require("../../src/util");
|
||||
|
||||
if (!!process.env.CI && process.platform !== "linux") {
|
||||
console.log("testcontainers are not available in the github CI on non-linux platforms. Skipping");
|
||||
if (!!process.env.CI && process.platform !== "linux" && process.arch !== "x64") {
|
||||
console.log("testcontainers are not available in the github CI on non-linux or non-x64 platforms. Skipping");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue