Browse Source

CI: include artifacts

ci-update
Hendrik Langer 5 years ago
parent
commit
94b4d0bd97
  1. 6
      .gitlab-ci.yml

6
.gitlab-ci.yml

@ -10,4 +10,10 @@ job:
stage: test stage: test
script: script:
- platformio ci --project-conf platformio.ini --board=heltec_wifi_lora_32 - platformio ci --project-conf platformio.ini --board=heltec_wifi_lora_32
- cp /home/user/.platformio/packages/framework-arduinoespressif32/tools/sdk/bin/bootloader.bin .pioenvs/heltec_wifi_lora_32/
- cp /home/user/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin .pioenvs/heltec_wifi_lora_32/
# to flash: esptool.py --before default_reset --after hard_reset --chip esp32 --port "/dev/ttyUSB0" --baud 115200 write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x1000 "/home/user/.platformio/packages/framework-arduinoespressif32/tools/sdk/bin/bootloader.bin" 0x8000 ".pioenvs/esp32thing/partitions.bin" 0xe000 "/home/user/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin" 0x10000 .pioenvs/heltec_wifi_lora_32/firmware.bin
variables: {PLATFORMIO_CI_SRC: "src"} variables: {PLATFORMIO_CI_SRC: "src"}
artifacts:
paths:
- ".pioenvs/heltec_wifi_lora_32/*.bin"

Loading…
Cancel
Save