aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-10-15 16:29:26 +0100
committerMatthew Lemon <y@yulqen.org>2023-10-15 16:29:26 +0100
commit63fd8291986e156436e48de7223986dff5ede861 (patch)
tree08207b8e49487a1940fd242f18b30ebbc95c5d73
parentFix test and update pyproject file (diff)
Adds working build manifestHEADmaster
-rw-r--r--.build.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000..73bc794
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,18 @@
+image: archlinux
+sources:
+ - git@git.sr.ht:~yulqen/datamaps
+packages:
+ - python
+ - python-pip
+secrets:
+ - 590eb309-3589-4444-bcbe-81f7a29024a8
+tasks:
+ - setup: |
+ mkdir -p /home/build/Documents/datamaps/output
+ mkdir -p /home/build/Documents/datamaps/input
+ - test: |
+ python -m venv /home/build/.venv
+ cd datamaps
+ /home/build/.venv/bin/pip install -e .
+ /home/build/.venv/bin/pip install pytest
+ /home/build/.venv/bin/pytest -q