27 lines
596 B
YAML
27 lines
596 B
YAML
name: Build Detektor binarie
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev ]
|
|
|
|
jobs:
|
|
build_macos:
|
|
runs-on: macos
|
|
# alpine doesn't have prebuilt wheels
|
|
container: python:3.12-slim
|
|
|
|
steps:
|
|
- name: Checkout
|
|
run: |
|
|
apk add git
|
|
git clone ${{ gitea.server_url }}/${{ gitea.repository }} .
|
|
git checkout ${{ gitea.ref_name }}
|
|
|
|
- name: Install deps
|
|
run: |
|
|
python3 -m venv .venv
|
|
. .venv/bin/activate
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
pip install -r requirements.txt
|
|
pip list
|