Skip to content

Commit c2cc111

Browse files
facchinmKurtE
authored andcommitted
gh: test sketch compilation after packaging core
1 parent 0b56742 commit c2cc111

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/package_core.yml

+21
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,24 @@ jobs:
3030
with:
3131
name: Core
3232
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

Comments
 (0)