Further on...
This commit is contained in:
parent
2f1ddb5bfa
commit
38ad65291d
35
.drone.yml
35
.drone.yml
@ -6,12 +6,43 @@ clone:
|
|||||||
depth: 3
|
depth: 3
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build-release-arch
|
- name: build-arch
|
||||||
image: archlinux_build
|
image: archlinux_build
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: archlinux_ccache
|
||||||
|
path: /root/.ccache
|
||||||
commands:
|
commands:
|
||||||
- pacman -S --noconfirm pybind11 openblas fftw pulseaudio
|
- pacman -S --noconfirm ccache openblas fftw pulseaudio
|
||||||
|
- pip install -r requirements.txt
|
||||||
- cmake .
|
- cmake .
|
||||||
# More than two makes ascee2 irresponsive for now
|
# More than two makes ascee2 irresponsive for now
|
||||||
- make -j2
|
- 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"
|
||||||
|
@ -34,7 +34,7 @@ If you have any question(s), please feel free to contact us: info@ascee.nl.
|
|||||||
|
|
||||||
## Dependencies
|
## 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`
|
- `$ pip3 install --user -r requirements.txt`
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
appdirs
|
appdirs
|
||||||
dataclasses_json
|
dataclasses_json
|
||||||
|
matplotlib
|
||||||
|
Loading…
Reference in New Issue
Block a user