Add windows build option

This commit is contained in:
Marek Wolan
2023-07-03 12:37:08 +00:00
parent 9999ed9b00
commit 0a5d25fe01

View File

@@ -55,8 +55,11 @@ steps:
displayName: 'Build PrimAITE'
- script: |
- ${{ if eq( variables['Agent.OS'], 'Linux') }}:
PRIMAITE_WHEEL=$(ls ./dist/primaite*.whl)
python -m pip install $PRIMAITE_WHEEL[dev]
- ${{ elseif eq( variable['Agent.OS'], 'Windows_NT') }}:
forfiles /p dist\ /m *.whl /c "cmd /c python -m pip install @file"
displayName: 'Install PrimAITE'
- script: |