kind: pipeline name: default platform: os: linux arch: amd64 steps: - name: build image: debian:stable-slim privileged: false environment: DEBUG: true commands: - export PATH=$PATH - apt update - apt -y upgrade - apt -y install build-essential libc6-dev libhidapi-dev libssl-dev - cd src && make && ls -l ; cd .. - cd src/contrib && make && ls -l ; cd ../.. when: branch: - master event: - push