2023-01-10 20:18:50 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2023-01-12 11:02:05 +00:00
|
|
|
name: archlinux_build
|
2023-01-10 20:18:50 +00:00
|
|
|
|
2023-01-10 20:50:48 +00:00
|
|
|
clone:
|
|
|
|
depth: 3
|
|
|
|
|
2023-01-10 20:18:50 +00:00
|
|
|
steps:
|
2023-01-10 20:50:48 +00:00
|
|
|
- name: build-release-arch
|
2023-01-10 20:18:50 +00:00
|
|
|
image: archlinux_build
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2023-01-12 11:09:25 +00:00
|
|
|
- pacman -S --noconfirm pybind11 openblas fftw pulseaudio
|
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
|
|
|
|
|