From b711e860b5a26cfbf0f80263be1ea3626e3cb853 Mon Sep 17 00:00:00 2001 From: Gregor Ziegltrum Date: Mon, 22 Jul 2024 11:00:01 +0200 Subject: [PATCH] delete gitlab-ci --- .gitlab-ci.yml | 56 -------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 58db417..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,56 +0,0 @@ -stages: - - test - - package - -test: - stage: test - interruptible: true - image: - name: ghcr.io/pyo3/maturin - entrypoint: - - "" - script: - - rustup override set nightly-2024-02-03 - - pip install '.[dev]' - - pytest -s tests - - cargo test - -lint_rust: - stage: test - interruptible: true - image: - name: ghcr.io/pyo3/maturin - entrypoint: - - "" - script: - - rustup override set nightly-2024-02-03 - - rustup component add rustfmt clippy - - cargo fmt --all --check - - cargo clippy --all -- -Dwarnings - -lint_python: - stage: test - interruptible: true - image: - name: ghcr.io/pyo3/maturin - entrypoint: - - "" - script: - - rustup override set nightly-2024-02-03 - - pip install '.[dev]' - - black --check python - - black --check tests - -package: - stage: package - image: - name: ghcr.io/pyo3/maturin - entrypoint: - - "" - only: - - tags - script: - - rustup override set nightly-2024-02-03 - - maturin build --release --out ./dist - - pip install twine - - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*.whl