Test
Some checks failed
Raspberry Pi 4 Build / Explore-Gitea-Actions (push) Failing after 1m32s

This commit is contained in:
Arron David Nelson 2024-01-30 18:52:00 -08:00
parent 827b59a5f1
commit 88c0b3a877

View File

@ -17,12 +17,19 @@ jobs:
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "Building project..." - run: echo "Building project..."
- run: cmake ${{ gitea.workspace }} - run: cmake ${{ gitea.workspace }}
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- name: Installing Dependencies
run: sudo apt install -y libasound2-dev
- run: cd ${{ gitea.workspace }} - run: cd ${{ gitea.workspace }}
- run: make - run: make
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- run: echo "This job's status is ${{ job.status }}." - run: echo "This job's status is ${{ job.status }}."