2018-11-06 06:36:26 +01:00
|
|
|
stages:
|
2018-12-31 23:29:56 +01:00
|
|
|
- test
|
2018-11-06 06:36:26 +01:00
|
|
|
|
2019-05-07 07:34:09 +02:00
|
|
|
QMK Firmware:
|
2018-12-31 23:29:56 +01:00
|
|
|
stage: test
|
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
tags:
|
|
|
|
- linux
|
2020-06-15 12:41:28 +02:00
|
|
|
image: qmkfm/base_container
|
2018-12-31 23:29:56 +01:00
|
|
|
before_script:
|
|
|
|
- apt-get update -qy
|
2019-09-07 17:57:30 +02:00
|
|
|
- apt-get install -y build-essential avr-libc binutils-arm-none-eabi binutils-avr dfu-programmer dfu-util gcc gcc-arm-none-eabi git libnewlib-arm-none-eabi gcc-avr python3 unzip wget zip
|
2018-12-31 23:29:56 +01:00
|
|
|
- avr-gcc --version
|
|
|
|
- uname -a
|
|
|
|
script:
|
2019-04-22 20:55:55 +02:00
|
|
|
- make planck/rev6:default planck/rev5:default
|
2020-06-15 12:41:28 +02:00
|
|
|
- make all:drashna -j2
|
2018-11-06 06:36:26 +01:00
|
|
|
artifacts:
|
|
|
|
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
|
|
|
paths:
|
|
|
|
- ./*.hex
|
|
|
|
- ./*.bin
|
2018-12-31 23:29:56 +01:00
|
|
|
expire_in: 1 month
|