Browse Source

Update drone.yml

tags/v0.0.5
Peter Vivell 6 years ago
parent
commit
4dbe62f61e
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      drone.yml

+ 3
- 2
drone.yml View File

@@ -10,12 +10,13 @@ steps:
10 10
   image: debian:stable-slim
11 11
   privileged: false
12 12
   environment:
13
-    MAKEFLAGS: "-j 4"
13
+    BUILDDEPS: build-essential libc6-dev libhidapi-dev libssl-dev   
14
+    MAKEFLAGS: -j 4
14 15
   commands:
15 16
     - echo 'Acquire::http { Proxy "http://172.17.0.1:3142"; }' | tee -a /etc/apt/apt.conf.d/proxy
16 17
     - apt-get update
17 18
     - apt-get --yes upgrade
18
-    - apt-get --yes install build-essential libc6-dev libhidapi-dev libssl-dev
19
+    - apt-get --yes install $BUILDDEPS
19 20
     - export MAKEFLAGS
20 21
     - cd src && make 
21 22
     - cd contrib && make 

Loading…
Cancel
Save