2023-01-10 20:18:50 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2023-01-12 18:49:32 +00:00
|
|
|
name: archlinux
|
2023-01-10 20:18:50 +00:00
|
|
|
|
2023-01-10 20:50:48 +00:00
|
|
|
clone:
|
2023-01-12 13:11:12 +00:00
|
|
|
depth: 50
|
2023-01-10 20:50:48 +00:00
|
|
|
|
2023-01-10 20:18:50 +00:00
|
|
|
steps:
|
2023-01-12 18:49:32 +00:00
|
|
|
- name: archlinux_build
|
2023-01-10 20:18:50 +00:00
|
|
|
image: archlinux_build
|
|
|
|
pull: if-not-exists
|
2023-01-12 11:31:12 +00:00
|
|
|
volumes:
|
|
|
|
- name: archlinux_ccache
|
|
|
|
path: /root/.ccache
|
2023-01-10 20:18:50 +00:00
|
|
|
commands:
|
2023-01-12 19:13:42 +00:00
|
|
|
# The following command is not required, we included this in the docker
|
|
|
|
# image of archlinux_build
|
|
|
|
# - pacman -S --noconfirm ccache openblas fftw pulseaudio pybind11
|
2023-01-12 13:16:40 +00:00
|
|
|
- git submodule update --init --recursive
|
2023-01-10 20:18:50 +00:00
|
|
|
- cmake .
|
2023-01-10 20:50:48 +00:00
|
|
|
# More than two makes ascee2 irresponsive for now
|
|
|
|
- make -j2
|
2023-01-12 13:23:16 +00:00
|
|
|
|
2023-01-12 18:49:32 +00:00
|
|
|
- name: archlinux_test
|
2023-01-12 11:31:12 +00:00
|
|
|
image: archlinux_build
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2023-01-12 19:13:42 +00:00
|
|
|
# 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
|
2023-01-12 11:31:12 +00:00
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install .
|
|
|
|
- pytest
|
|
|
|
|
2023-01-12 13:23:16 +00:00
|
|
|
# - name: release-arch
|
|
|
|
# commands:
|
|
|
|
# -
|
|
|
|
|
2023-01-12 11:31:12 +00:00
|
|
|
volumes:
|
|
|
|
- name: archlinux_ccache
|
|
|
|
host:
|
|
|
|
path: /tmp/archlinux_ccache
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2023-01-12 18:49:32 +00:00
|
|
|
name: ubuntu
|
2023-01-10 20:50:48 +00:00
|
|
|
|
2023-01-12 11:31:12 +00:00
|
|
|
clone:
|
|
|
|
depth: 3
|
|
|
|
|
2023-01-12 13:39:17 +00:00
|
|
|
volumes:
|
|
|
|
- name: archlinux_ccache
|
|
|
|
path: /root/.ccache
|
|
|
|
|
2023-01-12 11:31:12 +00:00
|
|
|
steps:
|
2023-01-12 18:49:32 +00:00
|
|
|
- name: ubuntu_build
|
2023-01-12 11:31:12 +00:00
|
|
|
image: ubuntu
|
|
|
|
pull: if-not-exists
|
2023-01-12 13:39:17 +00:00
|
|
|
volumes:
|
|
|
|
- name: ubuntu_ccache
|
|
|
|
path: /root/.ccache
|
2023-01-12 11:31:12 +00:00
|
|
|
commands:
|
2023-01-12 19:13:42 +00:00
|
|
|
# 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
|
2023-01-12 13:16:40 +00:00
|
|
|
- git submodule update --init --recursive
|
2023-01-12 13:39:17 +00:00
|
|
|
- cmake .
|
|
|
|
# More than two makes ascee2 irresponsive for now
|
|
|
|
- make -j2
|
|
|
|
|
2023-01-12 18:49:32 +00:00
|
|
|
- name: ubuntu_test
|
|
|
|
image: ubuntu
|
2023-01-12 13:39:17 +00:00
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2023-01-12 19:13:42 +00:00
|
|
|
# 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
|
2023-01-12 13:39:17 +00:00
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install .
|
|
|
|
- pytest-3
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: ubuntu_ccache
|
|
|
|
host:
|
|
|
|
path: /tmp/ubuntu_ccache
|