Skip to content

Commit

Permalink
Install build tools in Drone
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Feb 10, 2021
1 parent c94d265 commit 300c5b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local Pipeline(os, arch, version, alpine=false) = {
name: "Run tests",
image: "julia:"+version+(if alpine then "-alpine" else ""),
commands: [
"sudo apt-get install -y gcc build-essential",
"julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'",
"julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'",
"julia --project=test --check-bounds=yes --color=yes test/runtests.jl"
Expand Down
1 change: 1 addition & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ steps:
- name: Run tests
image: julia:1.6
commands:
- sudo apt-get install -y gcc build-essential
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
Expand Down

0 comments on commit 300c5b2

Please sign in to comment.