forked from ARMmbed/DAPLink
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
xychen
committed
Sep 2, 2024
1 parent
d507e28
commit 9f8756f
Showing
4 changed files
with
55 additions
and
194 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | ||
uses: carlosperate/arm-none-eabi-gcc-action@v1 | ||
with: | ||
release: 10.3-2021.10 | ||
|
||
- name: Setup Ninja | ||
uses: ashutoshvarma/setup-ninja@master | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
|
||
- name: Install Python module | ||
run: pip3 install --user -r requirements.txt | ||
|
||
- name: Check versions | ||
run: | | ||
set -ex | ||
echo $PATH | ||
which arm-none-eabi-gcc | ||
arm-none-eabi-gcc --version | ||
which cmake | ||
cmake --version | ||
which ninja | ||
ninja --version | ||
which python | ||
python --version | ||
- name: Compile | ||
run: | | ||
python tools/progen_compile.py -t cmake_gcc_arm -g ninja stm32f103xb_csk6_nanokit_bl stm32f103xb_csk6_nanokit_if | ||
cp projectfiles/make_gcc_arm/*/build/*_if_crc.{bin,hex} . | ||
- name: Upload test artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware | ||
path: | | ||
*.bin | ||
*.hex |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.