Commit Graph

16 Commits

Author SHA1 Message Date
Jeff Epler 8cdbeb62f6
Pass check=False for an expected-fail command 2022-07-14 15:16:28 -05:00
Jeff Epler 104ac5b965
signal errors in ci_fetch_deps subprocesses
A recent build failed. The original error seemed to be during ci_fetch_deps
where a build message said
```
  fatal: reference is not a tree: 346c936e14c6ea3a8d3d65cb1fa46202dc92999d
  fatal: Unable to checkout '346c936e14c6ea3a8d3d65cb1fa46202dc92999d' in submodule path 'extmod/ulab'
```
(along with other problems), but this step didn't signal failure to
github actions.

By adding the check= parameter, a failure of the subprocess will cause
a CalledProcessError to be raised, which will make ci_fetch_deps exit with
nonzero status. In turn, this should let Actions understand that something
went wrong with this step, instead of waiting for some subsequent step(s)
to go wrong.
2022-07-13 14:56:22 -05:00
Neradoc bb4c63699a Fetch the submodules in readthedocs with ci_fetch_deps.py 2022-05-14 23:17:49 +02:00
Dan Halbert 1ae0c084c7
Merge pull request #6396 from Neradoc/add-frozen-modules-to-support-matrix
Fix readthedocs checking out frozen modules
2022-05-14 08:35:36 -04:00
Neradoc df024733aa fix readthedocs frozen modules 2022-05-14 04:48:57 +02:00
Dan Halbert 06dac4071d
Merge pull request #6288 from Neradoc/add-frozen-modules-to-support-matrix
List frozen modules in the support matrix
2022-05-13 20:34:41 -04:00
Neradoc 3afec13e82 add frozen submodules to CI deps for docs and website 2022-05-11 15:33:20 +02:00
Jeff Epler f7be4345d9
Merge remote-tracking branch 'origin/main' into floppy 2022-04-07 08:37:46 -05:00
Jeff Epler d8569cc923 build out some additional submodules for testing 2022-02-16 11:41:01 -06:00
Jeff Epler f2c31c8d82
add adafruit_floppy, put in correct position 2022-02-02 10:14:19 -06:00
Jeff Epler 88abbb0029
submodules required must be listed explicitly 2022-01-13 20:40:30 -06:00
Scott Shawcroft 3f50453dd0
Merge pull request #5727 from tannewt/rpi_neopixel
Add neopixel support on PWM capable pins
2021-12-16 11:44:02 -08:00
Scott Shawcroft 4e41bf1dc7
Checkout ulab for build 2021-12-15 10:56:27 -08:00
Scott Shawcroft 74fa2e9edd
Fetch tools/adabot submodule for website build
It's used by build_board_info.py
2021-12-10 10:20:36 -08:00
Dan Halbert 26f23e44c4 don't fetch submodules for circuitpython.org update 2021-11-30 15:49:20 -05:00
Timon a1052d5f73
Initial broadcom port for Raspberry Pi
This targets the 64-bit CPU Raspberry Pis. The BCM2711 on the Pi 4
and the BCM2837 on the Pi 3 and Zero 2W. There are 64-bit fixes
outside of the ports directory for it.

There are a couple other cleanups that were incidental:
* Use const mcu_pin_obj_t instead of omitting the const. The structs
  themselves are const because they are in ROM.
* Use PTR <-> OBJ conversions in more places. They were found when
  mp_obj_t was set to an integer type rather than pointer.
* Optimize submodule checkout because the Pi submodules are heavy
  and unnecessary for the vast majority of builds.

Fixes #4314
2021-11-22 14:54:44 -08:00