From 13e89da7d234a3312ba43fde47adaaa0b7dbc352 Mon Sep 17 00:00:00 2001 From: peekxc Date: Sat, 9 Dec 2023 16:00:52 -0500 Subject: [PATCH] update cirrus for testing --- .cirrus.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 868ddf7..6154e5a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,9 +1,17 @@ container: image: python:slim -build_package: +task: pip_cache: folder: ~/.cache/pip fingerprint_script: echo $PYTHON_VERSION populate_script: python -m pip install . - test_script: pytest \ No newline at end of file + environment: + CC: clang + CXX: clang++ + install_dependencies_script: | + bash tools/cibw_linux.sh + build_script: | + python -m pip install . + test_script: | + python -m pytest tests/ \ No newline at end of file