mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2025-05-05 02:00:50 +05:00
20 lines
495 B
YAML
20 lines
495 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3"
|
|
apt_packages:
|
|
- nix
|
|
- proot
|
|
jobs:
|
|
pre_install:
|
|
- mkdir -p ~/.nix ~/.config/nix
|
|
- echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
|
|
build:
|
|
- proot -b ~/.nix:/nix /bin/sh -c "nix build -L .#documentation && cp -rv result $READTHEDOCS_OUTPUT/html/"
|