Skip to content

Commit 0c72392

Browse files
authored
Install build tools in Drone (#13)
* Install build tools in Drone
1 parent 76f2e55 commit 0c72392

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.drone.jsonnet

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ local Pipeline(os, arch, version, alpine=false) = {
1010
name: "Run tests",
1111
image: "julia:"+version+(if alpine then "-alpine" else ""),
1212
commands: [
13+
"apt-get update -y",
14+
"apt-get install -y gcc build-essential",
1315
"julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'",
1416
"julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'",
1517
"julia --project=test --check-bounds=yes --color=yes test/runtests.jl"

.drone.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ steps:
1010
- name: Run tests
1111
image: julia:1.6
1212
commands:
13+
- apt-get update -y
14+
- apt-get install -y gcc build-essential
1315
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
1416
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
1517
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl

0 commit comments

Comments
 (0)