Skip to content
Snippets Groups Projects
Commit 1ac154a9 authored by maxgerhardt's avatar maxgerhardt
Browse files

Display size too

parent d618fe33
No related branches found
No related tags found
No related merge requests found
......@@ -10,11 +10,13 @@ jobs:
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential make libnewlib-dev gcc-riscv64-unknown-elf libusb-1.0-0-dev
- name: Build Blink Example
run: cd examples/blink && make V=1 -j3 blink.elf && cd ../..
run: cd examples/blink && make V=1 -j3 blink.elf && riscv64-unknown-elf-size blink.elf && cd ../..
- name: Build sandbox Example
run: cd examples/sandbox && make V=1 -j3 sandbox.elf && riscv64-unknown-elf-size sandbox.elf && cd ../..
- name: Build fulldemo Example
run: cd examples/fulldemo && make V=1 -j3 fulldemo.elf && cd ../..
run: cd examples/fulldemo && make V=1 -j3 fulldemo.elf && riscv64-unknown-elf-size fulldemo.elf && cd ../..
- name: Build ws2812 Example
run: cd examples/ws2812demo && make V=1 -j3 ws2812bdemo.elf && cd ../..
run: cd examples/ws2812demo && make V=1 -j3 ws2812bdemo.elf && riscv64-unknown-elf-size ws2812bdemo.elf && cd ../..
pio-build:
strategy:
fail-fast: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment