From 0ad6435ffb5f06d2532c07a5b24a08edb6cb577e Mon Sep 17 00:00:00 2001 From: Charles Kawczynski Date: Wed, 11 Jan 2023 16:53:43 -0800 Subject: [PATCH] Combine some buildkite commands --- .buildkite/pipeline.yml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 2525bdd9..1b6a8754 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -15,17 +15,13 @@ steps: - julia -e 'using Pkg; Pkg.add("MPIPreferences"); using MPIPreferences; use_system_binary()' - echo "--- Instantiate project" - - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'" - - "julia --project -e 'using Pkg; Pkg.precompile(;strict=true)'" + - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'" - echo "--- Instantiate test" - - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\")'" - - "julia --project=test -e 'using Pkg; Pkg.instantiate(;verbose=true)'" - - "julia --project=test -e 'using Pkg; Pkg.precompile(;strict=true)'" + - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\"); Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'" - echo "--- Instantiate perf" - - "julia --project=perf -e 'using Pkg; Pkg.instantiate(;verbose=true)'" - - "julia --project=perf -e 'using Pkg; Pkg.precompile(;strict=true)'" + - "julia --project=perf -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'" - echo "--- Package status" - "julia --project -e 'using Pkg; Pkg.status()'" @@ -42,17 +38,13 @@ steps: # - julia -e 'using Pkg; Pkg.add("MPIPreferences"); using MPIPreferences; use_system_binary()' # - echo "--- Instantiate project" - # - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'" - # - "julia --project -e 'using Pkg; Pkg.precompile(;strict=true)'" + # - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'" # - echo "--- Instantiate test" - # - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\")'" - # - "julia --project=test -e 'using Pkg; Pkg.instantiate(;verbose=true)'" - # - "julia --project=test -e 'using Pkg; Pkg.precompile()'" + # - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\"); Pkg.instantiate(;verbose=true); Pkg.precompile()'" # - echo "--- Initialize CUDA runtime" - # - "julia --project -e 'using CUDA; CUDA.precompile_runtime()'" - # - "julia --project -e 'using CUDA; CUDA.versioninfo()'" + # - "julia --project -e 'using CUDA; CUDA.precompile_runtime(); CUDA.versioninfo()'" # - echo "--- Package status" # - "julia --project -e 'using Pkg; Pkg.status()'"