-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update all MCUs to ChibiOS 21.11.x/master #310
Changes from 51 commits
407a762
d4f07e0
3714f94
8680848
6307c5f
48f40ac
2d38b8a
f1f8ac5
45f4545
288e6a1
a1ea0a7
da3127b
588de0b
adad56d
d624a42
a2a9fc5
42bc000
2cc8ba6
f3f4b4f
7014bc0
0aa26e0
e898157
29da390
e66ea30
9309bb4
b3e24e4
2d44a5a
05378da
56b7db2
969f0d1
c387fb6
1aac536
f687010
51b16df
058c358
5a88412
bbf65ff
2d04624
a186e67
0e91010
9eab1d6
be8d2d4
6b5576f
9ace633
a49fb58
95919e3
c4b31a8
ed9890d
66d7b7c
c95ea76
cd18281
38c01bd
9f4768a
8c93606
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ name: build tests | |
|
||
on: | ||
push: | ||
branches: [ chibios-21.6.x ] | ||
branches: [ chibios-21.11.x-dev ] | ||
pull_request: | ||
branches: [ chibios-21.6.x ] | ||
branches: [ chibios-21.11.x-dev ] | ||
|
||
jobs: | ||
build: | ||
|
@@ -16,7 +16,7 @@ jobs: | |
release: '10-2020-q4' | ||
- name: setup vars | ||
run: | | ||
echo "CH_VER=stable_20.3.x" >> $GITHUB_ENV | ||
echo "CH_VER=master" >> $GITHUB_ENV | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've added |
||
echo "CHC_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV | ||
- name: download Chibios | ||
run: | | ||
|
@@ -25,11 +25,11 @@ jobs: | |
- name: decompress ChibiOS ext resources | ||
run: | | ||
cd $CH_PATH/ext | ||
for i in *.7z; do 7z x -y $i; done | ||
for i in *.7z; do 7z x -y "$i"; done | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is to fix a problem with a whitespace existing in one of the files that gets extracted (pico-sdk). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM |
||
- name: decompress ChibiOS-Contrib ext resources | ||
run: | | ||
cd $CHC_PATH/ext | ||
for i in *.7z; do 7z x -y $i; done | ||
for i in *.7z; do 7z x -y "$i"; done | ||
- name: build STM32 | ||
run: | | ||
$CHC_PATH/tools/chbuild.sh $CHC_PATH/testhal/STM32 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May have to be changed to just
chibios-21.11.x
. I don't know what to do with this one.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've pushed a
chibios-21.11.x
branch, you can use that