Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 12ecfea

Browse files
Add build step to azure (#982)
1 parent 02ae670 commit 12ecfea

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

azure-pipelines.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ schedules:
77
always: true
88

99
trigger:
10-
- main
10+
branches:
11+
include:
12+
- main
13+
tags:
14+
include:
15+
- 'release-*'
1116

1217
name: $(Date:yyyyMMdd)$(Rev:.r)
1318

@@ -146,3 +151,19 @@ jobs:
146151
bash <(curl -s https://codecov.io/bash)
147152
displayName: Get coverage (Linux)
148153
condition: eq( variables['Agent.OS'], 'Linux' )
154+
155+
- bash: |
156+
source activate gmprocess
157+
pip install -e .[build]
158+
python -m build
159+
python3 -m twine upload dist/*
160+
displayName: Build (mac/linux)
161+
condition: and(succeeded(), ne( variables['Agent.OS'], 'Windows_NT' ), contains(variables['Build.SourceBranch'], 'refs/tags/release-'))
162+
163+
- script: |
164+
call activate gmprocess
165+
pip install -e .[build]
166+
python -m build
167+
python3 -m twine upload dist/*
168+
displayName: Build (Windows)
169+
condition: and(succeeded(), eq( variables['Agent.OS'], 'Windows_NT' ), contains(variables['Build.SourceBranch'], 'refs/tags/release-'))

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ doc =
6464
sphinx-copybutton
6565
sphinx-inline-tabs
6666
sphinxcontrib-programoutput
67+
build =
68+
build
69+
twine
6770

6871
[options.packages.find]
6972
where = src

0 commit comments

Comments
 (0)