Some checks failed
BattleCap test mode / Build BattleCap (push) Failing after 1m18s
22 lines
760 B
YAML
22 lines
760 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: Cmake prepare part
|
|
run: mkdir build && cd build && cmake ..
|
|
- name: Build project
|
|
run: make
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
|