forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into openmv-1.24
- Loading branch information
Showing
857 changed files
with
24,624 additions
and
5,355 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- Thanks for submitting a Pull Request! We appreciate you spending the | ||
time to improve MicroPython. Please provide enough information so that | ||
others can review your Pull Request. | ||
Before submitting, please read: | ||
https://github.com/micropython/micropython/blob/master/CODEOFCONDUCT.md | ||
https://github.com/micropython/micropython/wiki/ContributorGuidelines | ||
Please check any CI failures that appear after your Pull Request is opened. | ||
--> | ||
|
||
### Summary | ||
|
||
<!-- Explain the reason for making this change. What problem does the pull request | ||
solve, or what improvement does it add? Add links if relevant. --> | ||
|
||
|
||
### Testing | ||
|
||
<!-- Explain what testing you did, and on which boards/ports. If there are | ||
boards or ports that you couldn't test, please mention this here as well. | ||
If you leave this empty then your Pull Request may be closed. --> | ||
|
||
|
||
### Trade-offs and Alternatives | ||
|
||
<!-- If the Pull Request has some negative impact (i.e. increased code size) | ||
then please explain why you think the trade-off improvement is worth it. | ||
If you can think of alternative ways to do this, please explain that here too. | ||
Delete this heading if not relevant (i.e. small fixes) --> | ||
|
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 was deleted.
Oops, something went wrong.
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,44 @@ | ||
name: qemu port | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/*.yml' | ||
- 'tools/**' | ||
- 'py/**' | ||
- 'extmod/**' | ||
- 'shared/**' | ||
- 'lib/**' | ||
- 'drivers/**' | ||
- 'ports/qemu/**' | ||
- 'tests/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_and_test_arm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install packages | ||
run: source tools/ci.sh && ci_qemu_setup_arm | ||
- name: Build and run test suite | ||
run: source tools/ci.sh && ci_qemu_build_arm | ||
- name: Print failures | ||
if: failure() | ||
run: tests/run-tests.py --print-failures | ||
|
||
build_and_test_rv32: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install packages | ||
run: source tools/ci.sh && ci_qemu_setup_rv32 | ||
- name: Build and run test suite | ||
run: source tools/ci.sh && ci_qemu_build_rv32 | ||
- name: Print failures | ||
if: failure() | ||
run: tests/run-tests.py --print-failures |
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.