From fa67c9cdb70dc71c54b12402d9de34733aca059a Mon Sep 17 00:00:00 2001 From: James Huston Date: Mon, 29 Jan 2024 18:53:52 -0500 Subject: [PATCH] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 1b4944e..2cb5ab1 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -23,10 +23,19 @@ jobs: - uses: actions/checkout@v3 - name: Checkout ACore - run: git clone https://github.com/araxiaonline/AzerothCore-wotlk-with-NPCBots.git + run: | + cd /home/runner/work/ + git clone https://github.com/araxiaonline/AzerothCore-wotlk-with-NPCBots.git + cd AzerothCore-wotlk-with-NPCBots/modules + git clone https://github.com/araxiaonline/mod-auctionator.git + cd ../../ + mkdir build + cd build + cmake ../ + make -j 4 - name: List Files - working-directory: ${{github.workspace}}/ + working-directory: /home/runner/work/AzerothCore-wotlk-with-NPCBots/ # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ls -al