forked from forks/qmk_firmware
6d0dc910d9
* Break up files to make more readable * Add comments to ortho 4x12 layout rules.mk * Small tweaks * Update GitLab CI scripts * Make ortho boards smaller
27 lines
855 B
YAML
27 lines
855 B
YAML
stages:
|
|
- build
|
|
|
|
qmk_firmware:
|
|
stage: build
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
tags:
|
|
- linux
|
|
image: ubuntu
|
|
before_script:
|
|
- apt-get update -qy
|
|
- apt-get install -y build-essential avr-libc binutils-arm-none-eabi binutils-avr dfu-programmer dfu-util diffutils gcc gcc-arm-none-eabi gcc-avr git libnewlib-arm-none-eabi unzip wget zip
|
|
- avr-gcc --version
|
|
script:
|
|
- make iris/rev2:drashna:production iris/rev2:drashna_old:production ergodox_ez:drashna ergodox_ez:drashna_glow viterbi/rev1:drashna:production orthodox/rev1:drashna:production orthodox/rev3:drashna:production crkbd:drashna:production planck/light:drashna:production
|
|
artifacts:
|
|
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
|
paths:
|
|
- ./*.hex
|
|
- ./*.bin
|
|
only:
|
|
- master
|
|
- drashna_keymaps
|
|
- merge-requests
|
|
- branches
|