We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b56742 commit c2cc111Copy full SHA for c2cc111
.github/workflows/package_core.yml
@@ -30,3 +30,24 @@ jobs:
30
with:
31
name: Core
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'
0 commit comments