No downloading of requirements anymore
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Anne de Jong 2023-01-12 20:13:42 +01:00
parent e86913a208
commit 3da6595b0c
1 changed files with 14 additions and 6 deletions

View File

@ -13,8 +13,10 @@ steps:
- name: archlinux_ccache
path: /root/.ccache
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
- pacman -S --noconfirm ccache openblas fftw pulseaudio pybind11
- cmake .
# More than two makes ascee2 irresponsive for now
- make -j2
@ -23,7 +25,9 @@ steps:
image: archlinux_build
pull: if-not-exists
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 .
- pytest
@ -57,8 +61,10 @@ steps:
- name: ubuntu_ccache
path: /root/.ccache
commands:
- 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
# The following commands are not required, we included this in the docker
# 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
- cmake .
# More than two makes ascee2 irresponsive for now
@ -68,8 +74,10 @@ steps:
image: ubuntu
pull: if-not-exists
commands:
- apt update
- apt install -y python3-pytest fftw pulseaudio python3-pip python3-scipy python3-h5py
# The following commands are not required, we included this in the docker
# 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 .
- pytest-3