mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
move logic to separated shell scripts and also create shell script for repository setup Also force create directory according to systemd recommendations
17 lines
304 B
Bash
Executable File
17 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
# Install dependencies and run test in container
|
|
|
|
set -ex
|
|
|
|
# install dependencies
|
|
pacman --noconfirm -Syu base-devel python-pip
|
|
|
|
# install python packages
|
|
pip install -e .[web]
|
|
pip install -e .[check]
|
|
pip install -e .[s3]
|
|
pip install -e .[test]
|
|
|
|
# run test and check targets
|
|
make check tests
|