workflow build&test 2
All checks were successful
Verification / Is-Buildable (push) Successful in 2m5s

This commit is contained in:
Artur Mukhamadiev 2026-03-02 21:09:12 +03:00
parent 15fb311c66
commit 9955c1986c

View File

@ -12,8 +12,9 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt install -y cmake make ninja-build gcc DEBIAN_FRONTEND=noninteractive apt install -y cmake make ninja-build gcc
- name: Prepare Environment - name: Prepare Environment
run: | run: |
python3 -m venv ~/py/ python3 -m venv $HOME/py/
source ~/py/bin/activate source $HOME/py/bin/activate
echo PATH=$PATH >> $GITEA_ENV
pip install meson pip install meson
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -22,7 +23,6 @@ jobs:
- name: Build project - name: Build project
run: | run: |
cd ${{ gitea.workspace }} cd ${{ gitea.workspace }}
source ~/py/bin/activate
meson setup build meson setup build
meson compile -C build meson compile -C build
- name: Unit Test Results - name: Unit Test Results