Skip to content

Commit

Permalink
only run downstream on x64
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Nov 1, 2024
1 parent aaeab8b commit 9ea616e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,10 @@ end
end

if Sys.islinux() && VERSION v"1.11.0" && isempty(VERSION.prerelease) # avoid running on `nightly`
if !is_ci() ||
(is_ci() && get(ENV, "GITHUB_EVENT_NAME", "pull_request") == "pull_request")
if (
!is_ci() ||
(is_ci() && get(ENV, "GITHUB_EVENT_NAME", "pull_request") == "pull_request")
) && Sys.WORD_SIZE == 64
@testset "downstream" begin
include("downstream.jl")
end
Expand Down

0 comments on commit 9ea616e

Please sign in to comment.