From a168f73a67c10fb551f60a546b6368c229b897cc Mon Sep 17 00:00:00 2001 From: Misa Date: Sun, 13 Mar 2022 23:26:59 -0700 Subject: [PATCH] Tell CI to clone submodules Otherwise it will not find the source files, as they wouldn't exist if they're not cloned. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59515bde..9058c3af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,8 @@ jobs: steps: - uses: actions/checkout@v1 + with: + submodules: true - name: Install dependencies run: brew install ninja sdl2 sdl2_mixer @@ -70,6 +72,8 @@ jobs: steps: - uses: actions/checkout@v1 + with: + submodules: true - name: CMake configure (default version) run: | @@ -118,6 +122,8 @@ jobs: steps: - uses: actions/checkout@v1 + with: + submodules: true - name: Cache SDL uses: actions/cache@v2