-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
57 lines (46 loc) · 1014 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
stages:
- test
- build
variables:
GIT_STRATEGY: clone
.test: &test
stage: test
script:
- python -m pip install ."[NEMO]"
- python ./run_tests.py
Test python 3.9:
<<: *test
image: python:3.9
Test python 3.10:
<<: *test
image: python:3.10
Test python 3.11:
<<: *test
image: python:3.11
Test python 3.12:
<<: *test
image: python:3.12
Test python 3.13:
<<: *test
image: python:3.13
Build Package:
image: python:3
stage: build
script:
- sed -i "s/^version =.*/version = '$(git describe --tags --abbrev=0).dev0'/" pyproject.toml
- pip install --upgrade pip build
- python -m build
only:
refs:
- $CI_DEFAULT_BRANCH
- tags
Release to PyPI:
image: python:3
stage: build
script:
- sed -i "s/^version =.*/version = '$(git describe --tags)'/" pyproject.toml
- pip install --upgrade pip build twine
- python -m build
- twine upload --user $PYPI_USER --password $PYPI_PASSWORD ./dist/NEMO_custom_forms*
only:
- tags