ci: add cirrus to isCI function to skip tests (#20526)

The environment variable CIRRUS_CI is manually passed to RunTests.cmake
as it doesn't get passed when using cmake script mode.
This commit is contained in:
dundargoc
2022-10-17 17:16:31 +02:00
committed by GitHub
parent b9632e58e3
commit 5046b4b4ad
8 changed files with 32 additions and 22 deletions

View File

@@ -10,7 +10,7 @@ local retry = helpers.retry
local ok = helpers.ok
local iswin = helpers.iswin
local command = helpers.command
local uname = helpers.uname
local isCI = helpers.isCI
describe(':terminal', function()
local screen
@@ -46,8 +46,8 @@ describe(':terminal', function()
end)
it("reads output buffer on terminal reporting #4151", function()
if uname() == 'freebsd' then
pending('Failing FreeBSD test')
if isCI('cirrus') then
pending('FIXME: cirrus')
end
if helpers.pending_win32(pending) then return end
if iswin() then