Skip to content

Commit 7fd4a3b

Browse files
committed
add checkout for submodules
1 parent e8fb2eb commit 7fd4a3b

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/linux-cmake.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- name: Install PyInstaller
2727
run: pip install pyinstaller
2828

29+
- name: Checkout submodules
30+
run: git submodule update --init --recursive
31+
2932
- name: Run configure
3033
run: ./configure
3134

.github/workflows/linux-debug.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
2626
- name: Install PyInstaller
2727
run: pip install pyinstaller
28+
29+
- name: Checkout submodules
30+
run: git submodule update --init --recursive
2831

2932
- name: Run configure
3033
run: ./configure

.github/workflows/windows-cmake.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Install PyInstaller
2222
run: pip install pyinstaller
2323

24+
- name: Checkout submodules
25+
run: git submodule update --init --recursive
26+
2427
- name: Configure CMake
2528
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
2629

.github/workflows/windows.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Install PyInstaller
2525
run: pip install pyinstaller
2626

27+
- name: Checkout submodules
28+
run: git submodule update --init --recursive
29+
2730
- name: Compile C++ programs with MinGW
2831
run: |
2932
g++ -static -mwindows -o LoaderMDO.exe rewritten-modern-software/LoaderMDO/LoaderMDO/LoaderMDO.cpp

0 commit comments

Comments
 (0)