forked from UltimateHackingKeyboard/firmware
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.drone.yml
38 lines (34 loc) · 880 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
kind: pipeline
name: Build (Arch)
platform:
os: linux
arch: amd64
steps:
- name: Fetch Submodules
image: alpine/git
commands:
- git submodule init
- git submodule update --recursive
- name: Generate versions.h
image: node:16
commands:
- npm install --prefix scripts
- scripts/generate-versions-h.js
- name: Build (Ubuntu Linux)
image: abcminiuser/docker-ci-arm-toolchain:latest
pull: always
commands:
- export CI_BUILD=1
- export VERBOSE=1
- make -j -C left DEBUG=1
- make -j -C left DEBUG=0
- make -j -C right/uhk60v1 DEBUG=1
- make -j -C right/uhk60v1 DEBUG=0
- make -j -C right/uhk60v2 DEBUG=1
- make -j -C right/uhk60v2 DEBUG=0
- make -j -C keycluster DEBUG=1
- make -j -C keycluster DEBUG=0
- make -j -C trackball DEBUG=1
- make -j -C trackball DEBUG=0
- make -j -C trackpoint DEBUG=1
- make -j -C trackpoint DEBUG=0