Skip to content

Commit 2a68a76

Browse files
Merge #160
160: Combine some buildkite commands r=charleskawczynski a=charleskawczynski This PR combines some buildkite commands Co-authored-by: Charles Kawczynski <[email protected]>
2 parents e9d03c7 + 0ad6435 commit 2a68a76

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

.buildkite/pipeline.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,13 @@ steps:
1515
- julia -e 'using Pkg; Pkg.add("MPIPreferences"); using MPIPreferences; use_system_binary()'
1616

1717
- echo "--- Instantiate project"
18-
- "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
19-
- "julia --project -e 'using Pkg; Pkg.precompile(;strict=true)'"
18+
- "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'"
2019

2120
- echo "--- Instantiate test"
22-
- "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\")'"
23-
- "julia --project=test -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
24-
- "julia --project=test -e 'using Pkg; Pkg.precompile(;strict=true)'"
21+
- "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\"); Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'"
2522

2623
- echo "--- Instantiate perf"
27-
- "julia --project=perf -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
28-
- "julia --project=perf -e 'using Pkg; Pkg.precompile(;strict=true)'"
24+
- "julia --project=perf -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'"
2925

3026
- echo "--- Package status"
3127
- "julia --project -e 'using Pkg; Pkg.status()'"
@@ -42,17 +38,13 @@ steps:
4238
# - julia -e 'using Pkg; Pkg.add("MPIPreferences"); using MPIPreferences; use_system_binary()'
4339

4440
# - echo "--- Instantiate project"
45-
# - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
46-
# - "julia --project -e 'using Pkg; Pkg.precompile(;strict=true)'"
41+
# - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true)'"
4742

4843
# - echo "--- Instantiate test"
49-
# - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\")'"
50-
# - "julia --project=test -e 'using Pkg; Pkg.instantiate(;verbose=true)'"
51-
# - "julia --project=test -e 'using Pkg; Pkg.precompile()'"
44+
# - "julia --project=test -e 'using Pkg; Pkg.develop(path=\".\"); Pkg.instantiate(;verbose=true); Pkg.precompile()'"
5245

5346
# - echo "--- Initialize CUDA runtime"
54-
# - "julia --project -e 'using CUDA; CUDA.precompile_runtime()'"
55-
# - "julia --project -e 'using CUDA; CUDA.versioninfo()'"
47+
# - "julia --project -e 'using CUDA; CUDA.precompile_runtime(); CUDA.versioninfo()'"
5648

5749
# - echo "--- Package status"
5850
# - "julia --project -e 'using Pkg; Pkg.status()'"

0 commit comments

Comments
 (0)