Further on...
continuous-integration/drone/push Build encountered an error Details
continuous-integration/drone Build is failing Details

This commit is contained in:
Anne de Jong 2023-01-12 12:31:12 +01:00
parent 2f1ddb5bfa
commit 38ad65291d
3 changed files with 35 additions and 3 deletions

View File

@ -6,12 +6,43 @@ clone:
depth: 3
steps:
- name: build-release-arch
- name: build-arch
image: archlinux_build
pull: if-not-exists
volumes:
- name: archlinux_ccache
path: /root/.ccache
commands:
- pacman -S --noconfirm pybind11 openblas fftw pulseaudio
- pacman -S --noconfirm ccache openblas fftw pulseaudio
- pip install -r requirements.txt
- cmake .
# More than two makes ascee2 irresponsive for now
- make -j2
- name: test-arch
image: archlinux_build
pull: if-not-exists
commands:
- pacman -S --noconfirm openblas fftw pulseaudio python-pip python-scipy
- pip install -r requirements.txt
- pip install .
- pytest
volumes:
- name: archlinux_ccache
host:
path: /tmp/archlinux_ccache
---
kind: pipeline
type: docker
name: ubuntu_build
clone:
depth: 3
steps:
- name: build-ubuntu
image: ubuntu
pull: if-not-exists
commands:
- echo "Hello world"

View File

@ -34,7 +34,7 @@ If you have any question(s), please feel free to contact us: info@ascee.nl.
## Dependencies
- `$ sudo apt install libopenblas-dev python3-pip python3-scipy libusb-dev libpulse-dev cmake-curses-gui python3-h5py`
- `$ sudo apt install python3-pybind11 libopenblas-dev python3-pip python3-scipy libusb-dev libpulse-dev cmake-curses-gui python3-h5py`
- `$ pip3 install --user -r requirements.txt`

View File

@ -1,2 +1,3 @@
appdirs
dataclasses_json
matplotlib