From 88c0b3a877778ae38d38d356fd5a77e81c7a5a41 Mon Sep 17 00:00:00 2001 From: karutoh Date: Tue, 30 Jan 2024 18:52:00 -0800 Subject: [PATCH] Test --- .gitea/workflows/demo.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 9be76c6..986a9a8 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -17,12 +17,19 @@ jobs: - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "Building project..." - run: cmake ${{ gitea.workspace }} + - name: List files in the repository run: | ls ${{ gitea.workspace }} + + - name: Installing Dependencies + run: sudo apt install -y libasound2-dev + - run: cd ${{ gitea.workspace }} - run: make + - name: List files in the repository run: | ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file