No downloading of requirements anymore
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
e86913a208
commit
3da6595b0c
20
.drone.yml
20
.drone.yml
@ -13,8 +13,10 @@ steps:
|
|||||||
- name: archlinux_ccache
|
- name: archlinux_ccache
|
||||||
path: /root/.ccache
|
path: /root/.ccache
|
||||||
commands:
|
commands:
|
||||||
|
# The following command is not required, we included this in the docker
|
||||||
|
# image of archlinux_build
|
||||||
|
# - pacman -S --noconfirm ccache openblas fftw pulseaudio pybind11
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
- pacman -S --noconfirm ccache openblas fftw pulseaudio pybind11
|
|
||||||
- cmake .
|
- cmake .
|
||||||
# More than two makes ascee2 irresponsive for now
|
# More than two makes ascee2 irresponsive for now
|
||||||
- make -j2
|
- make -j2
|
||||||
@ -23,7 +25,9 @@ steps:
|
|||||||
image: archlinux_build
|
image: archlinux_build
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands:
|
commands:
|
||||||
- pacman -S --noconfirm openblas python-pytest fftw pulseaudio python-pip python-scipy
|
# The following command is not required, we included this in the docker
|
||||||
|
# image of archlinux_build
|
||||||
|
# - pacman -S --noconfirm openblas python-pytest fftw pulseaudio python-pip python-scipy python-h5py
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- pip install .
|
- pip install .
|
||||||
- pytest
|
- pytest
|
||||||
@ -57,8 +61,10 @@ steps:
|
|||||||
- name: ubuntu_ccache
|
- name: ubuntu_ccache
|
||||||
path: /root/.ccache
|
path: /root/.ccache
|
||||||
commands:
|
commands:
|
||||||
- apt update
|
# The following commands are not required, we included this in the docker
|
||||||
- apt install -y git cmake python3-pybind11 libopenblas-dev python3-pip python3-scipy libusb-1.0-0-dev libpulse-dev python3-h5py fftw-dev
|
# image of ubuntu_build
|
||||||
|
#- apt update
|
||||||
|
#- apt install -y git cmake python3-pybind11 libopenblas-dev python3-pip python3-scipy libusb-1.0-0-dev libpulse-dev python3-h5py fftw-dev
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
- cmake .
|
- cmake .
|
||||||
# More than two makes ascee2 irresponsive for now
|
# More than two makes ascee2 irresponsive for now
|
||||||
@ -68,8 +74,10 @@ steps:
|
|||||||
image: ubuntu
|
image: ubuntu
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands:
|
commands:
|
||||||
- apt update
|
# The following commands are not required, we included this in the docker
|
||||||
- apt install -y python3-pytest fftw pulseaudio python3-pip python3-scipy python3-h5py
|
# image of ubuntu_build
|
||||||
|
#- apt update
|
||||||
|
#- apt install -y python3-pytest fftw pulseaudio python3-pip python3-scipy python3-h5py
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- pip install .
|
- pip install .
|
||||||
- pytest-3
|
- pytest-3
|
||||||
|
Loading…
Reference in New Issue
Block a user