diff --git a/.azure/azure-ci-build-pipeline.yaml b/.azure/azure-ci-build-pipeline.yaml index 5ce13919..06e44f48 100644 --- a/.azure/azure-ci-build-pipeline.yaml +++ b/.azure/azure-ci-build-pipeline.yaml @@ -55,12 +55,15 @@ 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( variables['Agent.OS'], 'Windows_NT') }}: + displayName: 'Install PrimAITE' + condition: eq( variables['Agent.OS'], 'Linux' ) + +- script: | forfiles /p dist\ /m *.whl /c "cmd /c python -m pip install @file" displayName: 'Install PrimAITE' + condition: eq( variables['Agent.OS'], 'Windows_NT' ) - script: | primaite setup