Skip to content

Commit

Permalink
Disable irrelevant builds
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Jan 11, 2025
1 parent ded9b46 commit 19ef527
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,16 @@ jobs:
python -m pip build --wheel
condition: eq( variables['Agent.OS'], 'Windows_NT')
displayName: 'Build wheel (Windows)'
- script: |
python -m pip install --upgrade pip wheel setuptools
python -m build --wheel
condition: eq( variables['Agent.OS'], 'Windows_NT')
displayName: 'Build wheel (Windows)'
- script: |
python -m pip install --upgrade pip build wheel setuptools
python -m build --wheel
condition: eq( variables['Agent.OS'], 'Linux')
displayName: 'Build wheel (Linux)'
- script: |
python -m pip install --upgrade pip build wheel setuptools
python -m build --wheel
condition: eq(variables['Agent.OS'], 'Darwin')
displayName: 'Build wheel (Mac)'
#- script: |
# python -m pip install --upgrade pip build wheel setuptools
# python -m build --wheel
# condition: eq( variables['Agent.OS'], 'Linux')
# displayName: 'Build wheel (Linux)'
#- script: |
# python -m pip install --upgrade pip build wheel setuptools
# python -m build --wheel
# condition: eq(variables['Agent.OS'], 'Darwin')
# displayName: 'Build wheel (Mac)'

0 comments on commit 19ef527

Please sign in to comment.