diff options
author | Damien George <damien@micropython.org> | 2024-02-07 12:50:34 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-02-07 12:58:34 +1100 |
commit | ff736830773371c4f616a1b5aa423a7ba4a57191 (patch) | |
tree | 3b29425bb597a3096e79c2fdb343acc5b6e89dc4 /.github | |
parent | 5a68e82d1729db0a372b5fa20030a2a7b1a6e788 (diff) | |
download | micropython-ff736830773371c4f616a1b5aa423a7ba4a57191.tar.gz micropython-ff736830773371c4f616a1b5aa423a7ba4a57191.zip |
github/workflows: Initialise micropython-lib submodule for windows CI.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ports_windows.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ports_windows.yml b/.github/workflows/ports_windows.yml index cb125cc6d2..a2759880a2 100644 --- a/.github/workflows/ports_windows.yml +++ b/.github/workflows/ports_windows.yml @@ -60,6 +60,8 @@ jobs: - uses: actions/checkout@v4 - name: Build mpy-cross.exe run: msbuild mpy-cross\mpy-cross.vcxproj -maxcpucount -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }} + - name: Update submodules + run: git submodule update --init lib/micropython-lib - name: Build micropython.exe run: msbuild ports\windows\micropython.vcxproj -maxcpucount -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }} -property:PyVariant=${{ matrix.variant }} - name: Get micropython.exe path |