Artur Mukhamadiev 0cde5159af
Some checks failed
Verification / Is-Buildable (push) Failing after 3s
[test] gitea workflow
2026-04-21 17:17:52 +03:00

38 lines
1023 B
YAML

name: Verification
run-name: ${{ gitea.actor }} runs verification of the project
on:
push:
branches:
- "master"
jobs:
Is-Buildable:
runs-on: ubuntu-latest
container:
image: docker:latest
options: --cpusccet-cpus="0-3"
steps:
- name: Ensure That Build system available
run: |
apt update
DEBIAN_FRONTEND=noninteractive apt install -y cmake make ninja-build gcc
- name: Prepare Environment
run: |
python3 -m venv $HOME/py/
source $HOME/py/bin/activate
echo PATH=$PATH >> $GITEA_ENV
pip install meson
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: "true"
- name: Build project
run: |
cd ${{ gitea.workspace }}
meson setup build
meson compile -C build
- name: Unit Test Results
run: |
meson test -C build
- run: echo "🍏 This job's status is ${{ job.status }}."