Files
kissfft/.travis.yml
2025-11-28 20:29:11 +01:00

28 lines
367 B
YAML

language: python
python:
- "3.13"
dist: noble
before_install:
- sudo apt-get install -y libfftw3-dev
addons:
apt:
update: true
install: true
jobs:
include:
- name: "build (make)"
script:
- make all
- make testall
- name: "build (cmake)"
script:
- mkdir build && cd build
- cmake ..
- make