File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 30
30
with:
31
31
name: Core
32
32
path: arduino-core-zephyr-llext*
33
+
34
+ - name: Create Blink sketch
35
+ run: |
36
+ mkdir extra/Blink/
37
+ wget https://raw.githubusercontent.com/arduino/arduino-examples/refs/heads/main/examples/01.Basics/Blink/Blink.ino
38
+ mv Blink.ino extra/Blink/
39
+
40
+ - name: Compile Blink
41
+ uses: arduino/compile-sketches@main
42
+ with:
43
+ fqbn: arduino:zephyr:giga
44
+ platforms: |
45
+ # Use Board Manager to install the latest release of Arduino Zephyr Boards to get the toolchain
46
+ - name: "arduino:zephyr"
47
+ source-url: "https://downloads.arduino.cc/packages/package_zephyr_index.json"
48
+ - source-path: "./"
49
+ name: "arduino:zephyr"
50
+ sketch-paths: |
51
+ extra/Blink
52
+ verbose: 'false'
53
+ enable-deltas-report: 'false'
You can’t perform that action at this time.
0 commit comments