diff options
author | Mike Delago <32778141+michaeldelago@users.noreply.github.com> | 2024-03-30 08:08:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-30 13:08:35 +0100 |
commit | 88be6d8150d00d63e48b067a25b510fc8ab3f04c (patch) | |
tree | c8a8ae9950ce7104dd51db793022c45ae92b25e4 /.github/workflows | |
parent | 4bc373b37f149dac41edfbbe9a37fe9088ea34de (diff) |
fix(ci): ensure module build clones modules (#18631)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/core_modules_build.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/core_modules_build.yml b/.github/workflows/core_modules_build.yml index 9efe8d2933..090ceae920 100644 --- a/.github/workflows/core_modules_build.yml +++ b/.github/workflows/core_modules_build.yml @@ -26,6 +26,11 @@ jobs: ) steps: - uses: actions/checkout@v4 + # This script installs a general list of modules to compile with + # azerothcore. This is useful for ensuring that module compilation + # functionality works. + - name: Checkout modules + run: bash -x ./apps/ci/ci-install-modules.sh - uses: ./.github/actions/linux-build with: CC: clang-15 |