Skip to content

Commit

Permalink
Merge pull request #89552 from aaronfranke/ci-submodules
Browse files Browse the repository at this point in the history
CI: Enable submodules on the checkout action
  • Loading branch information
akien-mga committed Mar 24, 2024
2 parents 7ff6d8c + 2b2dec1 commit 9b79f8e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/android_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Java 17
uses: actions/setup-java@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/godot_cpp_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
name: "Build and test Godot CPP"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup python and scons
uses: ./.github/actions/godot-deps
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ios_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

# Need newer mesa for lavapipe to work properly.
- name: Linux dependencies for tests
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/web_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Emscripten latest
uses: mymindstorm/setup-emsdk@v14
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
Expand Down

0 comments on commit 9b79f8e

Please sign in to comment.