Skip to content

Commit

Permalink
Try CI with Heptapod
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Oct 27, 2024
1 parent 8c41261 commit e162c7d
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
stages:
- test
- build
- release

image: python:3.12

test-run:
stage: test
script:
- wget "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
- bash Miniforge3-$(uname)-$(uname -m).sh -b
- ls ~/miniforge3
- ~/miniforge3/bin/conda init bash
- . ~/.bashrc
- conda --version

build-package:
stage: build
before_script:
- python -m pip install build twine
script:
- python -m build
- twine check dist/*
needs: []
artifacts:
when: always
paths:
- dist
expire_in: 24 hrs

# manually set TWINE_PASSWORD in web interface to your PyPI API token
release-package:
stage: release
needs: ["build-package", "test-run"]
# rules:
# - if: '$CI_MERGE_REQUEST_ID'
# when: never
# - if: '$CI_COMMIT_TAG'
# when: on_success
variables:
TWINE_USERNAME: __token__
before_script:
- pip install twine -U
script:
- ls dist/*
# - twine upload dist/*

0 comments on commit e162c7d

Please sign in to comment.