Skip to content

Commit e1beb9e

Browse files
authored
restore x86 testing - run downstream tests only on PRs (#173)
1 parent 2a304e6 commit e1beb9e

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,17 @@ jobs:
4141
- os: macos-latest
4242
version: '1.6'
4343
include:
44-
- version: 'nightly'
45-
os: ubuntu-latest
44+
- os: ubuntu-latest
45+
version: 'nightly'
46+
arch: x64
4647
experimental: true
4748

4849
steps:
4950
- uses: actions/checkout@v4
5051
- uses: julia-actions/setup-julia@latest
5152
with:
5253
version: ${{ matrix.version }}
54+
arch: ${{ matrix.arch }}
5355
- uses: julia-actions/cache@v1
5456
- uses: julia-actions/julia-buildpkg@latest
5557
- uses: julia-actions/julia-runtest@latest

test/runtests.jl

+18-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ warn_ticks = :warn, "No strict ticks found"
1414
const C = RGBA{Float64}
1515
const C0 = RGBA{PlotUtils.Colors.N0f8}
1616

17+
bool_env(x, default::String = "0")::Bool = tryparse(Bool, get(ENV, x, default))
18+
19+
is_ci() = bool_env("CI")
20+
is_64b() = Sys.WORD_SIZE == 64
21+
1722
@testset "colors" begin
1823
@test plot_color(nothing) == C(0, 0, 0, 0)
1924
@test plot_color(false) == C(0, 0, 0, 0)
@@ -120,7 +125,8 @@ end
120125
@test optimize_ticks(-1, 2) == ([-1.0, 0.0, 1.0, 2.0], -1.0, 2.0)
121126

122127
# check if ticks still generate if max - min << abs(min) (i.e. for Float64 ranges)
123-
@test optimize_ticks(1e11 - 1, 1e11 + 2) == (1e11 .+ (-1:2), 1e11 - 1.0, 1e11 + 2.0)
128+
is_64b() &&
129+
@test optimize_ticks(1e11 - 1, 1e11 + 2) == (1e11 .+ (-1:2), 1e11 - 1.0, 1e11 + 2.0)
124130

125131
@testset "dates" begin
126132
dt1, dt2 = Dates.value(DateTime(2000)), Dates.value(DateTime(2100))
@@ -158,6 +164,7 @@ end
158164

159165
@testset "digits" begin
160166
@testset "digits $((10^n) - 1)*10^$i" for n 1:9, i -9:9
167+
(!is_64b() && n 9) && continue
161168
y0 = 10^n
162169
x0 = y0 - 1
163170
x, y = (x0, y0) .* 10.0^i
@@ -314,7 +321,16 @@ end
314321
@test stats.time < 1e-3 # ~ 0.22ms (on 1.9)
315322
end
316323

317-
if Sys.islinux() && VERSION v"1.9.0" && isempty(VERSION.prerelease) # avoid running on `nightly`
324+
if (
325+
Sys.islinux() &&
326+
VERSION v"1.11.0" &&
327+
isempty(VERSION.prerelease) && # avoid running on `nightly`
328+
is_64b() &&
329+
(
330+
!is_ci() ||
331+
(is_ci() && get(ENV, "GITHUB_EVENT_NAME", "pull_request") == "pull_request")
332+
)
333+
)
318334
@testset "downstream" begin
319335
include("downstream.jl")
320336
end

0 commit comments

Comments
 (0)