Skip to content

Commit

Permalink
Update pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ba2tro authored Nov 14, 2023
1 parent f2fc434 commit 246dbcf
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
steps:
- label: "CI Plot and Doctests"
plugins:
- JuliaCI/julia#v1:
version: "1"
- JuliaCI/julia-test#v1:
coverage: false
agents:
os: "linux"
arch: "x86_64"
env:
GROUP: QUANTUMSAVORY_PLOT_TEST
- label: "Build Project"
command: |
julia --project -e '
@info "Building Project"
cd(@__DIR__)
using Pkg
Pkg.activate("ci-plot-and-doctests")
Pkg.instantiate()'
- label: "CI Plot"
command: |
julia --project -e '
using Pkg
@info "Running CI"
Pkg.activate("test")
Pkg.instantiate()
using SafeTestsets
@info "Running Doctests"
@safetestset "doctests" begin include("test/test_doctests.jl")
@info "Plotting Cairo"
@safetestset "plotting_cairo" begin include("test/test_plotting_cairo.jl") end
@info "Plotting GL"
@safetestset "plotting_gl" begin include("test/test_plotting_gl.jl") end'

0 comments on commit 246dbcf

Please sign in to comment.