Skip to content

Commit

Permalink
fixup! Fix the old demo test
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Jun 27, 2024
1 parent 6e188c4 commit a793edd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
- uses: julia-actions/julia-runtest@v1
with:
prefix: xvfb-run -a -s '-screen 0 1024x768x24'
env:
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libstdc++.so.6
# env:
# LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libstdc++.so.6
- uses: julia-actions/julia-uploadcodecov@v0.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Test

@testset "CImGui.jl" begin
# if CI only run if linux given xvfb is available in CI
if !haskey(ENV, "CI") || Sys.islinux() && Sys.WORD_SIZE == 64
if !haskey(ENV, "CI") || Sys.islinux()
withenv("AUTO_CLOSE_DEMO" => "5") do
include(joinpath("..", "demo", "demo.jl"))
Base.invokelatest(official_demo)
Expand Down

0 comments on commit a793edd

Please sign in to comment.