Skip to content

Commit 67de1f5

Browse files
committed
ci: add package_core job
1 parent 23df6b6 commit 67de1f5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/package_core.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Package core
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
container: zephyrprojectrtos/ci:latest
9+
env:
10+
CMAKE_PREFIX_PATH: /opt/toolchains
11+
steps:
12+
- name: Initialize
13+
working-directory: ArduinoCore-zephyr
14+
run: |
15+
./extra/bootstrap.sh
16+
./extra/build_all.sh
17+
./extra/package.sh `git describe --always`
18+
19+
- name: Archive firmware
20+
uses: actions/upload-artifact@v3
21+
with:
22+
name: firmware
23+
path: arduino-core-zephyr-llext*

0 commit comments

Comments
 (0)