From 246dbcf38d6d61be1c00595732d957218ce2554b Mon Sep 17 00:00:00 2001 From: Abhishek Bhatt <46929125+Abhishek-1Bhatt@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:26:38 -0500 Subject: [PATCH] Update pipeline.yml --- .buildkite/pipeline.yml | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index d5153b05..efd9af70 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -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 \ No newline at end of file + - 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'