-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch out Regz datastructures for SQLite (#316)
* gen and atdf unit tests passing * enable svd tests, add database indexes * revert stm32 all.zig * enable ARM interrupts * add example builds to CI * add commas * add exmaples dir * fix device ref * fix atdf too * shema -> format * silent regz * fix up register files * add summary to double check examples actions * fix typo * don't do esp for now * add tests to CI
- Loading branch information
Showing
43 changed files
with
76,442 additions
and
76,035 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build Examples | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
example_dir: [ | ||
#espressif/esp, | ||
gigadevice/gd32, | ||
microchip/avr, | ||
microchip/atsam, | ||
nordic/nrf5x, | ||
nxp/lpc, | ||
stmicro/stm32, | ||
raspberrypi/rp2xxx, | ||
wch/ch32v, | ||
] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Zig | ||
uses: mlugg/setup-zig@v1 | ||
with: | ||
version: 0.13.0 | ||
|
||
- name: Build | ||
run: zig build -Doptimize=ReleaseSmall --summary all | ||
working-directory: examples/${{ matrix.example_dir }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.