diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 822cb74..19fdd4a 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -16,7 +16,10 @@ jobs: uses: actions/checkout@v3 - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "Building project..." - - run: cmake ${{ gitea.workspace }} -DLINUX_WINDOW_SYSTEM:STRING=XCB + - run: cd ${{ gitea.workspace }} + - run: mkdir build + - run: cd build + - run: cmake -DCMAKE_BUILD_TYPE=Debug -DLINUX_WINDOW_SYSTEM:STRING=XCB .. - name: List files in the repository run: | @@ -25,8 +28,7 @@ jobs: - name: Installing Dependencies run: sudo apt install -y libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev - - run: cd ${{ gitea.workspace }} - - run: make + - run: cmake --build . --config Debug - name: List files in the repository run: |