Skip to content

Commit

Permalink
try prefix and strip for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Affie committed Feb 16, 2024
1 parent b77b965 commit 99aa5e6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.10'
- 'nightly'
- '1' #latest stable release
os:
- ubuntu-latest
arch:
Expand All @@ -36,8 +35,11 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
prefix: xvfb-run -s '-screen 0 1024x768x24'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ desc = "Visualization tools for Caesar.jl related SLAM solutions"
version = "0.1.0"

[deps]
Caesar = "62eebf14-49bc-5f46-9df9-f7b7ef379406"
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
# Caesar = "62eebf14-49bc-5f46-9df9-f7b7ef379406"
# CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand All @@ -18,7 +18,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
TensorCast = "02d47bb6-7ce6-556a-be16-bb1710789e2b"

[compat]
Caesar = "0.15, 0.16"
# Caesar = "0.15, 0.16"
ColorSchemes = "3"
DocStringExtensions = "0.8, 0.9"
GLMakie = "0.7, 0.8"
Expand Down
18 changes: 9 additions & 9 deletions src/Arena.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module Arena
# using Colors
import Manifolds as MJL
import GeometryBasics as GeoB
using Caesar
# using Caesar
# import Caesar._PCL as _PCL
const _PCL = Caesar._PCL
# const _PCL = Caesar._PCL
# can switch to WGLMakie after https://github.com/SimonDanisch/JSServe.jl/issues/131
# using GLMakie
using GLMakie
#TODO allow switching backends using GLMakie #GLMakie.activate!()
using CairoMakie
# using CairoMakie

using ColorSchemes
using Colors
Expand All @@ -21,10 +21,10 @@ using DocStringExtensions

# a lot of legacy code has been moved to the attic

include("Exports.jl")
include("services/PlotPointCloudMap.jl")
include("services/PlotBoundingBox.jl")
include("services/PlotFeatureTracks.jl")
include("services/PlotHistogramGrid.jl")
# include("Exports.jl")
# include("services/PlotPointCloudMap.jl")
# include("services/PlotBoundingBox.jl")
# include("services/PlotFeatureTracks.jl")
# include("services/PlotHistogramGrid.jl")

end # module
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ using Test
using Aqua

@testset "Arena.jl" begin
@testset "Code quality (Aqua.jl)" begin
Aqua.test_all(Arena)
end
# @testset "Code quality (Aqua.jl)" begin
# Aqua.test_all(Arena)
# end

include("testBasicAnimations.jl")
# include("testBasicAnimations.jl")

end

0 comments on commit 99aa5e6

Please sign in to comment.