Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
python-version: 3.12
- name: Install requirements
run: sudo apt update && sudo apt install --yes libev-dev
run: sudo apt update && sudo apt install --yes libev-dev libvirt-dev
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install tox-uv
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description: Lint Markdown files

on:
push:
branches:
- master
paths:
- 'docs/**'
- mkdocs.yml
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ name: tests

on:
push:
paths:
- '!docs/**'
- '!mkdocs.yml'
- '!.markdownlint.yaml'
pull_request:
paths:
- '!docs/**'
- '!mkdocs.yml'
- '!.markdownlint.yaml'

jobs:
Lint:
Expand Down
10 changes: 7 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,23 @@ In a case you would like to run Genesis Core on your own infrastructure, you can

```bash
sudo apt-get install build-essential python3.12-dev python3.12-venv \
tox libev-dev libvirt-dev
libev-dev libvirt-dev
curl -LsSf https://astral.sh/uv/install.sh | sh
source "$HOME"/.local/bin/env
```

**Fedora:**

```bash
sudo dnf install tox gcc libev-devel libvirt-devel
sudo dnf install gcc libev-devel libvirt-devel
curl -LsSf https://astral.sh/uv/install.sh | sh
source "$HOME"/.local/bin/env
```

Initialize virtual environment:

```bash
tox -e develop
uv sync
source .tox/develop/bin/activate
Comment thread
slashburygin marked this conversation as resolved.
```

Expand Down
Loading