From 282bc179c5059fbf0c3321c8f6d0f799e26bb974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sun, 18 Feb 2024 21:57:43 +0000 Subject: [PATCH] chore: added pyo3 CI/CD Including the execution of some simple tests. --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ede0d98..40733f41 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -56,6 +56,18 @@ build-wasm: - frontends/web/lib expire_in: 1 day +build-pyo3: + stage: build + parallel: + matrix: + - RUST_VERSION: ["1.74.0"] + script: + - rustup toolchain install $RUST_VERSION + - rustup override set $RUST_VERSION + - rustc --version + - cargo build --features python + - cargo build --release --features python + test-rust: stage: test parallel: