Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/pipelines/templates/jobs/archetype-sdk-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
dependsOn:
- 'Build'

timeoutInMinutes: 240
timeoutInMinutes: 270

strategy:
matrix:
Expand Down
15 changes: 15 additions & 0 deletions eng/pipelines/templates/steps/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ steps:
displayName: 'Tag scheduled builds'
condition: and(eq(variables['Build.SourceBranchName'],'master'),eq(variables['Build.Reason'],'Schedule'))

- task: UsePythonVersion@0
displayName: 'Use Python 2.7'
inputs:
versionSpec: '2.7'

- script: |
pip install wheel setuptools packaging
displayName: 'Prep Py2 Environment'

- task: PythonScript@0
displayName: 'Generate Python2 Applicable Namespace Packages'
inputs:
scriptPath: 'scripts/devops_tasks/build_packages.py'
arguments: '-d "$(Build.ArtifactStagingDirectory)" "*-nspkg" --service=${{parameters.ServiceDirectory}}'

- task: UsePythonVersion@0
displayName: 'Use Python $(PythonVersion)'
inputs:
Expand Down
2 changes: 1 addition & 1 deletion eng/tox/create_wheel_and_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def cleanup_build_artifacts(build_folder):
# it does't exist, so we need to error out
else:
logging.error(
"{w} not present in the prebuilt wheels directory. Exiting."
"{w} not present in the prebuilt wheels directory. Exiting.".format(w=wheel)
)
exit(1)
else:
Expand Down
1 change: 0 additions & 1 deletion scripts/devops_tasks/build_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

import argparse
import sys
from pathlib import Path
import os

from common_tasks import process_glob_string, run_check_call
Expand Down
2 changes: 1 addition & 1 deletion scripts/devops_tasks/common_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def process_glob_string(glob_string, target_root_dir):

# dedup, in case we have double coverage from the glob strings. Example: "azure-mgmt-keyvault,azure-mgmt-*"
collected_directories = list(set(collected_top_level_directories))

# if we have individually queued this specific package, it's obvious that we want to build it specifically
# in this case, do not honor the omission list
if len(collected_directories) == 1:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-e ../../../tools/azure-sdk-tools
-e ../../../tools/azure-sdk-tools