Copy __init__.py for azure + install azure-functions (#479)

This commit is contained in:
Maheer Iqbal 2019-07-09 13:56:49 -07:00 коммит произвёл GitHub
Родитель b6b740a93c
Коммит 69caaaee68
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -4,4 +4,4 @@ python -m venv .env
source .env/bin/activate
python -m pip install .
python -m pip install . --no-compile --target "$BUILD_SOURCESDIRECTORY/deps"
python -m pip install . azure-functions --no-compile --target "$BUILD_SOURCESDIRECTORY/deps"

Просмотреть файл

@ -4,4 +4,4 @@ python -m pip install .
$depsPath = Join-Path -Path $env:BUILD_SOURCESDIRECTORY -ChildPath "deps"
python -m pip install . --no-compile --target $depsPath.ToString()
python -m pip install . azure-functions --no-compile --target $depsPath.ToString()

Просмотреть файл

@ -19,6 +19,12 @@ jobs:
inputs:
disableAutoCwd: true
scriptPath: 'pack/scripts/nix_deps.sh'
- task: CopyFiles@2
inputs:
contents: |
azure/__init__.py
targetFolder: '$(Build.ArtifactStagingDirectory)/deps/azure'
flattenFolders: true
- task: CopyFiles@2
inputs:
contents: |

Просмотреть файл

@ -18,6 +18,12 @@ jobs:
- task: PowerShell@2
inputs:
filePath: 'pack\scripts\win_deps.ps1'
- task: CopyFiles@2
inputs:
contents: |
azure\__init__.py
targetFolder: '$(Build.ArtifactStagingDirectory)\deps\azure'
flattenFolders: true
- task: CopyFiles@2
inputs:
contents: |