Some checks failed
BattleCap test mode / Build BattleCap (push) Failing after 20s
24 lines
857 B
YAML
24 lines
857 B
YAML
name: BattleCap test mode
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build BattleCap:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Ubuntu machine succesfully started!"
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- name: Install cmake package
|
|
run: sudo apt update -y && sudo apt install cmake -y
|
|
- name: Cmake prepare part
|
|
run: mkdir build && cd build && cmake ..
|
|
- name: Build project
|
|
run: make
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
|