mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-17 09:05:56 +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 { MqttMonitorType } = require("../../server/monitor-types/mqtt");
|
||||||
const { UP, PENDING } = require("../../src/util");
|
const { UP, PENDING } = require("../../src/util");
|
||||||
|
|
||||||
if (!!process.env.CI && process.platform !== "linux") {
|
if (!!process.env.CI && process.platform !== "linux" && process.arch !== "x64") {
|
||||||
console.log("testcontainers are not available in the github CI on non-linux platforms. Skipping");
|
console.log("testcontainers are not available in the github CI on non-linux or non-x64 platforms. Skipping");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue