|
|
@@ -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
|