We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f16bdf commit 0697c0dCopy full SHA for 0697c0d
.github/workflows/macOS.yml
@@ -67,7 +67,7 @@ jobs:
67
68
- name: Build ESP32 port
69
run: python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=rgb_display INDEV=gt911
70
-
+
71
72
- uses: actions/upload-artifact@v4
73
with:
builder/macOS.py
@@ -50,7 +50,13 @@ def build_sdl(addl_commands):
50
51
52
def submodules():
53
- pass
+ berkeley_db = os.path.abspath('lib/micropython/lib/berkeley-db-1.xx/README')
54
55
+ if not os.path.exists(berkeley_db):
56
+ return_code, _ = unix.spawn(unix.submodules_cmd)
57
58
+ if return_code != 0:
59
+ sys.exit(return_code)
60
61
62
def compile(*args): # NOQA
0 commit comments