From 22613a025e988832150b1987f6972aa9a45cf77d Mon Sep 17 00:00:00 2001 From: karutoh Date: Wed, 31 Jan 2024 14:15:43 -0800 Subject: [PATCH] Test --- .gitea/workflows/demo.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 13ac7cd..96dd4b5 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -15,18 +15,15 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "Building project..." - - run: cd ${{ gitea.workspace }} - - run: cmake -DCMAKE_BUILD_TYPE=Debug -DLINUX_WINDOW_SYSTEM:STRING=XCB . - - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - name: Installing Dependencies run: sudo apt install -y libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev - - run: cmake --build . --config Debug + - name: echo "Building project..." + run: | + cd ${{ gitea.workspace }} + cmake -DCMAKE_BUILD_TYPE=Debug -DLINUX_WINDOW_SYSTEM:STRING=XCB . + cmake --build . --config Debug - name: List files in the repository run: |