You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
619 B
14 lines
619 B
production:
|
|
image: java:8
|
|
variables:
|
|
ESPURL: "http://arduino.esp8266.com/stable/package_esp8266com_index.json"
|
|
before_script:
|
|
- apt update
|
|
- cd /
|
|
- wget --quiet "https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz" -O "arduino-nightly-linux64.tar.xz"
|
|
- tar axf "arduino-nightly-linux64.tar.xz"
|
|
- /arduino-nightly/arduino --pref "boardsmanager.additional.urls=${ESPURL}"
|
|
- /arduino-nightly/arduino --install-boards "esp8266:esp8266"
|
|
script:
|
|
- cd "${CI_PROJECT_DIR}"
|
|
- /arduino-nightly/arduino --board "esp8266:esp8266" --verify "blink.ino"
|