mirror of
https://github.com/actions/python-versions.git
synced 2025-12-15 15:32:11 +00:00
Compare commits
64 Commits
3.6.10-202
...
3.8.4-8981
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6468490367 | ||
|
|
4be9a4cca1 | ||
|
|
89a619f4b9 | ||
|
|
ac42875cb8 | ||
|
|
280f63ac35 | ||
|
|
f85839ce0d | ||
|
|
594273ac16 | ||
|
|
bc57fd3c5f | ||
|
|
a887886318 | ||
|
|
ff4ca0b2e5 | ||
|
|
0b6a06284d | ||
|
|
50e47adc8b | ||
|
|
99a84463ad | ||
|
|
a7aea91c95 | ||
|
|
cdd1351989 | ||
|
|
2aa5c75cf9 | ||
|
|
13b26039fa | ||
|
|
aa8915507a | ||
|
|
57bf4da3a5 | ||
|
|
085cf7607e | ||
|
|
ae06e9c90f | ||
|
|
c4030498aa | ||
|
|
6701f7c8b0 | ||
|
|
1430296346 | ||
|
|
abc7af4881 | ||
|
|
c2464b5d82 | ||
|
|
ff07bfffbb | ||
|
|
46856eea96 | ||
|
|
1c92aa7fd8 | ||
|
|
4e23e7ccf5 | ||
|
|
e643db6cb1 | ||
|
|
15099a8cbe | ||
|
|
a3078ebf0c | ||
|
|
87b41b829e | ||
|
|
b41aabd79c | ||
|
|
ca3edf5446 | ||
|
|
04b0679602 | ||
|
|
6204b3717e | ||
|
|
d20146a86c | ||
|
|
4df41f4916 | ||
|
|
636e550e78 | ||
|
|
bbbf87f2cf | ||
|
|
1cb5ff2fb0 | ||
|
|
654b037263 | ||
|
|
06e3e6702d | ||
|
|
5c851d6172 | ||
|
|
67794a4d5f | ||
|
|
58a9c4b1d9 | ||
|
|
9b7480ff6d | ||
|
|
7ef20701e6 | ||
|
|
4dee72fe2f | ||
|
|
94ccfe8b74 | ||
|
|
6e82fdd5b2 | ||
|
|
0baa79c808 | ||
|
|
614a9e29eb | ||
|
|
22860d08aa | ||
|
|
d0bb4295e9 | ||
|
|
2a3a8176d7 | ||
|
|
06026eac83 | ||
|
|
572e346b1c | ||
|
|
10f5e8e4f5 | ||
|
|
1c756eb429 | ||
|
|
95394a105a | ||
|
|
eb1676d8ac |
33
.github/workflows/create-pr.yml
vendored
Normal file
33
.github/workflows/create-pr.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
name: Create Pull Request
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: pwsh
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create_pr:
|
||||||
|
name: Create Pull Request
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Create versions-manifest.json
|
||||||
|
run: |
|
||||||
|
./helpers/packages-generation/manifest-generator.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
||||||
|
-GitHubAccessToken "${{secrets.GITHUB_TOKEN}}" `
|
||||||
|
-OutputFile "./versions-manifest.json" `
|
||||||
|
-ConfigurationFile "./config/python-manifest-config.json"
|
||||||
|
- name: Create GitHub PR
|
||||||
|
run: |
|
||||||
|
$formattedDate = Get-Date -Format "MM/dd/yyyy"
|
||||||
|
./helpers/github/create-pull-request.ps1 `
|
||||||
|
-RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
||||||
|
-AccessToken "${{secrets.GITHUB_TOKEN}}" `
|
||||||
|
-BranchName "update-versions-manifest-file" `
|
||||||
|
-CommitMessage "Update versions-manifest" `
|
||||||
|
-PullRequestTitle "[versions-manifest] Update for release from ${formattedDate}" `
|
||||||
|
-PullRequestBody "Update versions-manifest.json for release from ${formattedDate}"
|
||||||
18
.github/workflows/create-release.yml
vendored
Normal file
18
.github/workflows/create-release.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
name: Create release
|
||||||
|
on:
|
||||||
|
repository_dispatch:
|
||||||
|
types: [create-release]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create_release:
|
||||||
|
name: Create release ${{ github.event.client_payload.ToolVersion }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Create release for Python ${{ github.event.client_payload.ToolVersion }}
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.event.client_payload.TagName }}
|
||||||
|
release_name: ${{ github.event.client_payload.ToolVersion }}
|
||||||
|
body: ${{ github.event.client_payload.ReleaseBody }}
|
||||||
32
.github/workflows/manifest-config-validation.yml
vendored
Normal file
32
.github/workflows/manifest-config-validation.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
name: Manifest config tests
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- 'versions-manifest.json'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
RunTests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Install Pester
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Install-Module Pester -Force -Scope CurrentUser
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Import-Module Pester
|
||||||
|
Invoke-Pester -Configuration @{
|
||||||
|
Run = @{
|
||||||
|
Path = "tests/ManifestConfig.Tests.ps1"
|
||||||
|
Exit = $true
|
||||||
|
}
|
||||||
|
}
|
||||||
35
.github/workflows/releases-validation.yml
vendored
Normal file
35
.github/workflows/releases-validation.yml
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
name: Validate 'versions-manifest.json' file
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'versions-manifest.json'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
setup-versions-from-manifest:
|
||||||
|
name: Setup ${{ matrix.python }} ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [macos-latest, windows-latest, ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]
|
||||||
|
python: [3.5.4, 3.6.7, 3.7.5, 3.8.1]
|
||||||
|
steps:
|
||||||
|
- name: setup-python ${{ matrix.python }}
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
|
- name: Validate version
|
||||||
|
run: |
|
||||||
|
$pythonVersion = (python --version)
|
||||||
|
if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){
|
||||||
|
Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
$pythonVersion
|
||||||
|
shell: pwsh
|
||||||
|
|
||||||
|
- name: Run simple code
|
||||||
|
run: python -c 'import math; print(math.factorial(5))'
|
||||||
4
.gitmodules
vendored
Normal file
4
.gitmodules
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[submodule "helpers"]
|
||||||
|
path = helpers
|
||||||
|
url = https://github.com/actions/versions-package-tools
|
||||||
|
branch = main
|
||||||
@@ -10,7 +10,7 @@ Some versions are pre-installed on [virtual-environments](https://github.com/act
|
|||||||
More versions will (soon!) be available to install on-the-fly through the [`setup-python`](https://github.com/actions/setup-python) action.
|
More versions will (soon!) be available to install on-the-fly through the [`setup-python`](https://github.com/actions/setup-python) action.
|
||||||
|
|
||||||
## Adding new versions
|
## Adding new versions
|
||||||
We are trying to build and release new versions of Python as soon as they are released. Please open an issue if any versions are missing.
|
We are trying to build and release new versions of Python as soon as they are released. Please open an issue in [actions/virtual-environments](https://github.com/actions/virtual-environments) if any versions are missing.
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure
|
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ stages:
|
|||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'macOS-10.14'
|
VmImage: 'macOS-10.14'
|
||||||
Platform: macos-1014
|
Platform: darwin
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
@@ -17,7 +17,7 @@ stages:
|
|||||||
dependsOn: Build_Python_MacOS
|
dependsOn: Build_Python_MacOS
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'macOS-10.14'
|
VmImage: 'macOS-10.14'
|
||||||
Platform: macos-1014
|
Platform: darwin
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
@@ -26,7 +26,7 @@ stages:
|
|||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'ubuntu-16.04'
|
VmImage: 'ubuntu-16.04'
|
||||||
Platform: ubuntu-1604
|
Platform: linux-16.04
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
@@ -36,7 +36,7 @@ stages:
|
|||||||
dependsOn: Build_Python_Ubuntu_1604
|
dependsOn: Build_Python_Ubuntu_1604
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'ubuntu-16.04'
|
VmImage: 'ubuntu-16.04'
|
||||||
Platform: ubuntu-1604
|
Platform: linux-16.04
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
@@ -45,7 +45,7 @@ stages:
|
|||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'ubuntu-18.04'
|
VmImage: 'ubuntu-18.04'
|
||||||
Platform: ubuntu-1804
|
Platform: linux-18.04
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
@@ -55,7 +55,26 @@ stages:
|
|||||||
dependsOn: Build_Python_Ubuntu_1804
|
dependsOn: Build_Python_Ubuntu_1804
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'ubuntu-18.04'
|
VmImage: 'ubuntu-18.04'
|
||||||
Platform: ubuntu-1804
|
Platform: linux-18.04
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
|
- stage: Build_Python_Ubuntu_2004
|
||||||
|
dependsOn: []
|
||||||
|
variables:
|
||||||
|
VmImage: 'ubuntu-20.04'
|
||||||
|
Platform: linux-20.04
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
|
|
||||||
|
- stage: Test_Python_Ubuntu_2004
|
||||||
|
condition: succeeded()
|
||||||
|
dependsOn: Build_Python_Ubuntu_2004
|
||||||
|
variables:
|
||||||
|
VmImage: 'ubuntu-20.04'
|
||||||
|
Platform: linux-20.04
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
@@ -64,7 +83,7 @@ stages:
|
|||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'vs2017-win2016'
|
VmImage: 'vs2017-win2016'
|
||||||
Platform: windows-2016
|
Platform: win32
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
@@ -74,7 +93,7 @@ stages:
|
|||||||
dependsOn: Build_Python_X64_Windows
|
dependsOn: Build_Python_X64_Windows
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'vs2017-win2016'
|
VmImage: 'vs2017-win2016'
|
||||||
Platform: windows-2016
|
Platform: win32
|
||||||
Architecture: x64
|
Architecture: x64
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
@@ -83,7 +102,7 @@ stages:
|
|||||||
dependsOn: []
|
dependsOn: []
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'vs2017-win2016'
|
VmImage: 'vs2017-win2016'
|
||||||
Platform: windows-2016
|
Platform: win32
|
||||||
Architecture: x86
|
Architecture: x86
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/build-job.yml
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
@@ -93,7 +112,21 @@ stages:
|
|||||||
dependsOn: Build_Python_x86_Windows
|
dependsOn: Build_Python_x86_Windows
|
||||||
variables:
|
variables:
|
||||||
VmImage: 'vs2017-win2016'
|
VmImage: 'vs2017-win2016'
|
||||||
Platform: windows-2016
|
Platform: win32
|
||||||
Architecture: x86
|
Architecture: x86
|
||||||
jobs:
|
jobs:
|
||||||
- template: /azure-pipelines/templates/test-job.yml
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
|
- stage: Publish_Release
|
||||||
|
dependsOn: [Test_Python_MacOS, Test_Python_Ubuntu_1604, Test_Python_Ubuntu_1804, Test_Python_Ubuntu_2004, Test_Python_x64_Windows, Test_Python_x86_Windows]
|
||||||
|
jobs:
|
||||||
|
- deployment: Publish_Release
|
||||||
|
pool:
|
||||||
|
name: Azure Pipelines
|
||||||
|
vmImage: ubuntu-18.04
|
||||||
|
environment: 'Get Available Tools Versions - Publishing Approval'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- template: /azure-pipelines/templates/publish-release-steps.yml
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ pr:
|
|||||||
autoCancel: true
|
autoCancel: true
|
||||||
branches:
|
branches:
|
||||||
include:
|
include:
|
||||||
- master
|
- main
|
||||||
paths:
|
paths:
|
||||||
exclude:
|
exclude:
|
||||||
- versions-manifest.json
|
- versions-manifest.json
|
||||||
@@ -29,6 +29,10 @@ jobs:
|
|||||||
-AzureDevOpsProjectName $(System.TeamProject) `
|
-AzureDevOpsProjectName $(System.TeamProject) `
|
||||||
-AzureDevOpsAccessToken $(System.AccessToken) `
|
-AzureDevOpsAccessToken $(System.AccessToken) `
|
||||||
-SourceBranch $(Build.SourceBranch) `
|
-SourceBranch $(Build.SourceBranch) `
|
||||||
|
-DefinitionId $(DEFINITION_ID) `
|
||||||
-SourceVersion $(Build.SourceVersion) `
|
-SourceVersion $(Build.SourceVersion) `
|
||||||
|
-ManifestLink $(MANIFEST_LINK) `
|
||||||
|
-WaitForBuilds $(WAIT_FOR_BUILDS) `
|
||||||
-ToolVersions "$(PYTHON_VERSIONS)" `
|
-ToolVersions "$(PYTHON_VERSIONS)" `
|
||||||
-DefinitionId $(DEFINITION_ID)
|
-RetryIntervalSec $(RETRY_INTERVAL_SEC) `
|
||||||
|
-RetryCount $(RETRY_COUNT)
|
||||||
@@ -7,13 +7,24 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout: self
|
- checkout: self
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
# We need this temporary step to have a consistent version of PowerShell on all images.
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Update PowerShell version for macOS'
|
||||||
|
condition: eq(variables['Platform'], 'darwin')
|
||||||
|
inputs:
|
||||||
|
TargetType: inline
|
||||||
|
script: |
|
||||||
|
brew update
|
||||||
|
brew cask upgrade powershell
|
||||||
|
|
||||||
- task: PowerShell@2
|
- task: PowerShell@2
|
||||||
displayName: 'Build Python $(VERSION)'
|
displayName: 'Build Python $(VERSION)'
|
||||||
inputs:
|
inputs:
|
||||||
targetType: filePath
|
targetType: filePath
|
||||||
filePath: './builders/build-python.ps1'
|
filePath: './builders/build-python.ps1'
|
||||||
arguments: '-Version $(VERSION) -Platform $(Platform) -Architecture $(Architecture)'
|
arguments: '-Version $(VERSION) -Platform $(Platform) -Architecture $(Architecture)'
|
||||||
|
pwsh: true
|
||||||
|
|
||||||
- task: PublishPipelineArtifact@1
|
- task: PublishPipelineArtifact@1
|
||||||
displayName: 'Publish Artifact: Python $(VERSION)'
|
displayName: 'Publish Artifact: Python $(VERSION)'
|
||||||
|
|||||||
47
azure-pipelines/templates/publish-release-steps.yml
Normal file
47
azure-pipelines/templates/publish-release-steps.yml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
steps:
|
||||||
|
- download: none
|
||||||
|
|
||||||
|
- checkout: self
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
inputs:
|
||||||
|
source: 'current'
|
||||||
|
path: $(Build.BinariesDirectory)
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create release Python $(VERSION)'
|
||||||
|
inputs:
|
||||||
|
TargetType: inline
|
||||||
|
script: |
|
||||||
|
$tagName = "$(VERSION)-$(Build.BuildId)"
|
||||||
|
$releaseBody = "Python $(VERSION)"
|
||||||
|
./helpers/github/create-release.ps1 -RepositoryFullName "$(Build.Repository.Name)" `
|
||||||
|
-AccessToken "$(GITHUB_TOKEN)" `
|
||||||
|
-ToolVersion "$(VERSION)" `
|
||||||
|
-TagName "$tagName" `
|
||||||
|
-ReleaseBody "$releaseBody" `
|
||||||
|
-EventType "$(EVENT_TYPE)"
|
||||||
|
- task: GitHubRelease@1
|
||||||
|
displayName: 'Upload release assets'
|
||||||
|
inputs:
|
||||||
|
gitHubConnection: 'Github Connection'
|
||||||
|
action: edit
|
||||||
|
tag: '$(VERSION)-$(Build.BuildId)'
|
||||||
|
title: '$(VERSION)'
|
||||||
|
releaseNotesSource: inline
|
||||||
|
releaseNotesInline: '$(RELEASE_NOTES_CONTENT)'
|
||||||
|
assets: '$(Build.BinariesDirectory)/*/*'
|
||||||
|
assetUploadMode: replace
|
||||||
|
addChangeLog: false
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Trigger "Create Pull Request" workflow'
|
||||||
|
inputs:
|
||||||
|
TargetType: inline
|
||||||
|
script: |
|
||||||
|
Import-Module (Join-Path (Get-Location).Path "github-api.psm1")
|
||||||
|
$gitHubApi = Get-GitHubApi -RepositoryFullName "$(Build.Repository.Name)" -AccessToken "$(GITHUB_TOKEN)"
|
||||||
|
$gitHubApi.CreateWorkflowDispatch("$(WORKFLOW_FILE_NAME)", "$(WORKFLOW_DISPATCH_REF)", "$(INPUTS)")
|
||||||
|
Write-Host "Please find created Pull request here: $(Build.Repository.Uri)/pulls"
|
||||||
|
workingDirectory: '$(Build.SourcesDirectory)/helpers/github'
|
||||||
@@ -3,10 +3,19 @@ jobs:
|
|||||||
pool:
|
pool:
|
||||||
name: Azure Pipelines
|
name: Azure Pipelines
|
||||||
vmImage: $(VmImage)
|
vmImage: $(VmImage)
|
||||||
|
variables:
|
||||||
|
TestRunTitle: 'python-$(Platform)-$(Architecture)'
|
||||||
steps:
|
steps:
|
||||||
- checkout: self
|
- checkout: self
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: Fully cleanup the toolcache directory before testing
|
||||||
|
inputs:
|
||||||
|
targetType: filePath
|
||||||
|
filePath: helpers/clean-toolcache.ps1
|
||||||
|
arguments: -ToolName "Python"
|
||||||
|
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
inputs:
|
inputs:
|
||||||
source: 'current'
|
source: 'current'
|
||||||
@@ -18,13 +27,14 @@ jobs:
|
|||||||
archiveFilePatterns: '$(Build.BinariesDirectory)/python-$(VERSION)-$(Platform)-$(Architecture).*'
|
archiveFilePatterns: '$(Build.BinariesDirectory)/python-$(VERSION)-$(Platform)-$(Architecture).*'
|
||||||
destinationFolder: $(Build.BinariesDirectory)
|
destinationFolder: $(Build.BinariesDirectory)
|
||||||
cleanDestinationFolder: false
|
cleanDestinationFolder: false
|
||||||
|
overwriteExistingFiles: true
|
||||||
|
|
||||||
- task: PowerShell@2
|
- task: PowerShell@2
|
||||||
displayName: 'Apply build artifact to the local machines'
|
displayName: 'Apply build artifact to the local machines'
|
||||||
inputs:
|
inputs:
|
||||||
TargetType: inline
|
TargetType: inline
|
||||||
script: |
|
script: |
|
||||||
if ($env:PLATFORM -match 'windows') { powershell ./setup.ps1 } else { sh ./setup.sh }
|
if ($env:PLATFORM -match 'win32') { powershell ./setup.ps1 } else { sh ./setup.sh }
|
||||||
workingDirectory: '$(Build.BinariesDirectory)'
|
workingDirectory: '$(Build.BinariesDirectory)'
|
||||||
|
|
||||||
- task: UsePythonVersion@0
|
- task: UsePythonVersion@0
|
||||||
@@ -40,7 +50,7 @@ jobs:
|
|||||||
script: |
|
script: |
|
||||||
Invoke-Expression "python ./sources/python-config-output.py"
|
Invoke-Expression "python ./sources/python-config-output.py"
|
||||||
workingDirectory: '$(Build.SourcesDirectory)/tests'
|
workingDirectory: '$(Build.SourcesDirectory)/tests'
|
||||||
condition: ne(variables['Platform'], 'windows-2016')
|
condition: ne(variables['Platform'], 'win32')
|
||||||
|
|
||||||
- task: PowerShell@2
|
- task: PowerShell@2
|
||||||
displayName: 'Verbose python binary links'
|
displayName: 'Verbose python binary links'
|
||||||
@@ -48,16 +58,16 @@ jobs:
|
|||||||
TargetType: inline
|
TargetType: inline
|
||||||
script: |
|
script: |
|
||||||
$pythonLocation = which python
|
$pythonLocation = which python
|
||||||
if ($env:PLATFORM -match 'macos') { otool -L $pythonLocation } else { ldd $pythonLocation }
|
if ($env:PLATFORM -match 'darwin') { otool -L $pythonLocation } else { ldd $pythonLocation }
|
||||||
workingDirectory: '$(Build.BinariesDirectory)'
|
workingDirectory: '$(Build.BinariesDirectory)'
|
||||||
condition: ne(variables['Platform'], 'windows-2016')
|
condition: ne(variables['Platform'], 'win32')
|
||||||
|
|
||||||
- task: PowerShell@2
|
- task: PowerShell@2
|
||||||
displayName: 'Run tests'
|
displayName: 'Run tests'
|
||||||
inputs:
|
inputs:
|
||||||
TargetType: inline
|
TargetType: inline
|
||||||
script: |
|
script: |
|
||||||
Install-Module Pester -Force -Scope CurrentUser
|
Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1
|
||||||
Import-Module Pester
|
Import-Module Pester
|
||||||
$pesterParams = @{
|
$pesterParams = @{
|
||||||
Path="./python-tests.ps1";
|
Path="./python-tests.ps1";
|
||||||
@@ -67,6 +77,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Invoke-Pester -Script $pesterParams -OutputFile "test_results.xml" -OutputFormat NUnitXml
|
Invoke-Pester -Script $pesterParams -OutputFile "test_results.xml" -OutputFormat NUnitXml
|
||||||
|
pwsh: true
|
||||||
workingDirectory: '$(Build.SourcesDirectory)/tests'
|
workingDirectory: '$(Build.SourcesDirectory)/tests'
|
||||||
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using module "./builders/win-python-builder.psm1"
|
using module "./win-python-builder.psm1"
|
||||||
using module "./builders/ubuntu-python-builder.psm1"
|
using module "./ubuntu-python-builder.psm1"
|
||||||
using module "./builders/macos-python-builder.psm1"
|
using module "./macos-python-builder.psm1"
|
||||||
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
@@ -21,7 +21,7 @@ Required parameter. The platform for which Python will be built.
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
param(
|
param(
|
||||||
[Parameter (Mandatory=$true)][Version] $Version,
|
[Parameter (Mandatory=$true)][semver] $Version,
|
||||||
[Parameter (Mandatory=$true)][string] $Platform,
|
[Parameter (Mandatory=$true)][string] $Platform,
|
||||||
[string] $Architecture = "x64"
|
[string] $Architecture = "x64"
|
||||||
)
|
)
|
||||||
@@ -29,6 +29,7 @@ param(
|
|||||||
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "common-helpers.psm1") -DisableNameChecking
|
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "common-helpers.psm1") -DisableNameChecking
|
||||||
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "nix-helpers.psm1") -DisableNameChecking
|
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "nix-helpers.psm1") -DisableNameChecking
|
||||||
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "win-helpers.psm1") -DisableNameChecking
|
Import-Module (Join-Path $PSScriptRoot "../helpers" | Join-Path -ChildPath "win-helpers.psm1") -DisableNameChecking
|
||||||
|
Import-Module (Join-Path $PSScriptRoot "python-version.psm1") -DisableNameChecking
|
||||||
|
|
||||||
function Get-PythonBuilder {
|
function Get-PythonBuilder {
|
||||||
<#
|
<#
|
||||||
@@ -49,18 +50,17 @@ function Get-PythonBuilder {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param (
|
param(
|
||||||
[version] $Version,
|
[semver] $Version,
|
||||||
[string] $Architecture,
|
[string] $Architecture,
|
||||||
[string] $Platform
|
[string] $Platform
|
||||||
)
|
)
|
||||||
|
|
||||||
$Platform = $Platform.ToLower()
|
if ($Platform -match 'win32') {
|
||||||
if ($Platform -match 'windows') {
|
|
||||||
$builder = [WinPythonBuilder]::New($Version, $Architecture, $Platform)
|
$builder = [WinPythonBuilder]::New($Version, $Architecture, $Platform)
|
||||||
} elseif ($Platform -match 'ubuntu') {
|
} elseif ($Platform -match 'linux') {
|
||||||
$builder = [UbuntuPythonBuilder]::New($Version, $Architecture, $Platform)
|
$builder = [UbuntuPythonBuilder]::New($Version, $Architecture, $Platform)
|
||||||
} elseif ($Platform -match 'macos') {
|
} elseif ($Platform -match 'darwin') {
|
||||||
$builder = [macOSPythonBuilder]::New($Version, $Architecture, $Platform)
|
$builder = [macOSPythonBuilder]::New($Version, $Architecture, $Platform)
|
||||||
} else {
|
} else {
|
||||||
Write-Host "##vso[task.logissue type=error;] Invalid platform: $Platform"
|
Write-Host "##vso[task.logissue type=error;] Invalid platform: $Platform"
|
||||||
@@ -71,5 +71,5 @@ function Get-PythonBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
### Create Python builder instance, and build artifact
|
### Create Python builder instance, and build artifact
|
||||||
$Builder = Get-PythonBuilder -Version $Version -Architecture $Architecture -Platform $Platform
|
$Builder = Get-PythonBuilder -Version $Version -Architecture $Architecture -Platform $Platform
|
||||||
$Builder.Build()
|
$Builder.Build()
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using module "./builders/nix-python-builder.psm1"
|
using module "./nix-python-builder.psm1"
|
||||||
|
|
||||||
class macOSPythonBuilder : NixPythonBuilder {
|
class macOSPythonBuilder : NixPythonBuilder {
|
||||||
<#
|
<#
|
||||||
@@ -17,7 +17,7 @@ class macOSPythonBuilder : NixPythonBuilder {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
macOSPythonBuilder(
|
macOSPythonBuilder(
|
||||||
[version] $version,
|
[semver] $version,
|
||||||
[string] $architecture,
|
[string] $architecture,
|
||||||
[string] $platform
|
[string] $platform
|
||||||
) : Base($version, $architecture, $platform) { }
|
) : Base($version, $architecture, $platform) { }
|
||||||
@@ -29,17 +29,29 @@ class macOSPythonBuilder : NixPythonBuilder {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
$pythonBinariesLocation = $this.GetFullPythonToolcacheLocation()
|
$pythonBinariesLocation = $this.GetFullPythonToolcacheLocation()
|
||||||
$configureString = "./configure --prefix=$pythonBinariesLocation --enable-optimizations --enable-shared --with-lto"
|
$configureString = "./configure"
|
||||||
|
$configureString += " --prefix=$pythonBinariesLocation"
|
||||||
|
$configureString += " --enable-optimizations"
|
||||||
|
$configureString += " --enable-shared"
|
||||||
|
$configureString += " --with-lto"
|
||||||
|
|
||||||
### OS X 10.11, Apple no longer provides header files for the deprecated system version of OpenSSL.
|
### OS X 10.11, Apple no longer provides header files for the deprecated system version of OpenSSL.
|
||||||
### Solution is to install these libraries from a third-party package manager,
|
### Solution is to install these libraries from a third-party package manager,
|
||||||
### and then add the appropriate paths for the header and library files to configure command.
|
### and then add the appropriate paths for the header and library files to configure command.
|
||||||
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
|
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
|
||||||
if ($this.Version -lt "3.7.0") {
|
if ($this.Version -lt "3.7.0") {
|
||||||
$env:LDFLAGS="-L$(brew --prefix openssl)/lib"
|
$env:LDFLAGS = "-L/usr/local/opt/openssl@1.1/lib"
|
||||||
$env:CFLAGS="-I$(brew --prefix openssl)/include"
|
$env:CFLAGS = "-I/usr/local/opt/openssl@1.1/include"
|
||||||
} else {
|
} else {
|
||||||
$configureString += " --with-openssl=/usr/local/opt/openssl"
|
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*
|
||||||
|
### Link to documentation (https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.enable_load_extension)
|
||||||
|
if ($this.Version -ge "3.2.0") {
|
||||||
|
$configureString += " --enable-loadable-sqlite-extensions"
|
||||||
|
$env:LDFLAGS += " -L$(brew --prefix sqlite3)/lib"
|
||||||
|
$env:CFLAGS += " -I$(brew --prefix sqlite3)/include"
|
||||||
}
|
}
|
||||||
|
|
||||||
Execute-Command -Command $configureString
|
Execute-Command -Command $configureString
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using module "./builders/python-builder.psm1"
|
using module "./python-builder.psm1"
|
||||||
|
|
||||||
class NixPythonBuilder : PythonBuilder {
|
class NixPythonBuilder : PythonBuilder {
|
||||||
<#
|
<#
|
||||||
@@ -33,13 +33,12 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
[string] $OutputArtifactName
|
[string] $OutputArtifactName
|
||||||
|
|
||||||
NixPythonBuilder(
|
NixPythonBuilder(
|
||||||
[version] $version,
|
[semver] $version,
|
||||||
[string] $architecture,
|
[string] $architecture,
|
||||||
[string] $platform
|
[string] $platform
|
||||||
) : Base($version, $architecture, $platform) {
|
) : Base($version, $architecture, $platform) {
|
||||||
$this.InstallationTemplateName = "nix-setup-template.sh"
|
$this.InstallationTemplateName = "nix-setup-template.sh"
|
||||||
$this.InstallationScriptName = "setup.sh"
|
$this.InstallationScriptName = "setup.sh"
|
||||||
|
|
||||||
$this.OutputArtifactName = "python-$Version-$Platform-$Architecture.tar.gz"
|
$this.OutputArtifactName = "python-$Version-$Platform-$Architecture.tar.gz"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,8 +49,10 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
$base = $this.GetBaseUri()
|
$base = $this.GetBaseUri()
|
||||||
|
$versionName = $this.GetBaseVersion()
|
||||||
|
$nativeVersion = Convert-Version -version $this.Version
|
||||||
|
|
||||||
return "${base}/$($this.Version)/Python-$($this.Version).tgz"
|
return "${base}/${versionName}/Python-${nativeVersion}.tgz"
|
||||||
}
|
}
|
||||||
|
|
||||||
[string] GetPythonBinary() {
|
[string] GetPythonBinary() {
|
||||||
@@ -95,9 +96,7 @@ class NixPythonBuilder : PythonBuilder {
|
|||||||
$installationTemplateContent = Get-Content -Path $installationTemplateLocation -Raw
|
$installationTemplateContent = Get-Content -Path $installationTemplateLocation -Raw
|
||||||
|
|
||||||
$variablesToReplace = @{
|
$variablesToReplace = @{
|
||||||
"{{__VERSION_MAJOR__}}" = $this.Version.Major;
|
"{{__VERSION_FULL__}}" = $this.Version;
|
||||||
"{{__VERSION_MINOR__}}" = $this.Version.Minor;
|
|
||||||
"{{__VERSION_BUILD__}}" = $this.Version.Build;
|
|
||||||
}
|
}
|
||||||
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }
|
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ class PythonBuilder {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
[version] $Version
|
[semver] $Version
|
||||||
[string] $Architecture
|
[string] $Architecture
|
||||||
[string] $Platform
|
[string] $Platform
|
||||||
[string] $HostedToolcacheLocation
|
[string] $HostedToolcacheLocation
|
||||||
@@ -38,17 +38,17 @@ class PythonBuilder {
|
|||||||
[string] $ArtifactFolderLocation
|
[string] $ArtifactFolderLocation
|
||||||
[string] $InstallationTemplatesLocation
|
[string] $InstallationTemplatesLocation
|
||||||
|
|
||||||
PythonBuilder ([version] $version, [string] $architecture, [string] $platform) {
|
PythonBuilder ([semver] $version, [string] $architecture, [string] $platform) {
|
||||||
$this.Version = $version
|
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
||||||
$this.Architecture = $architecture
|
|
||||||
$this.Platform = $platform
|
|
||||||
|
|
||||||
$this.HostedToolcacheLocation = $env:AGENT_TOOLSDIRECTORY
|
$this.HostedToolcacheLocation = $env:AGENT_TOOLSDIRECTORY
|
||||||
$this.TempFolderLocation = $env:BUILD_SOURCESDIRECTORY
|
$this.TempFolderLocation = $env:BUILD_SOURCESDIRECTORY
|
||||||
$this.WorkFolderLocation = $env:BUILD_BINARIESDIRECTORY
|
$this.WorkFolderLocation = $env:BUILD_BINARIESDIRECTORY
|
||||||
$this.ArtifactFolderLocation = $env:BUILD_STAGINGDIRECTORY
|
$this.ArtifactFolderLocation = $env:BUILD_STAGINGDIRECTORY
|
||||||
|
|
||||||
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
$this.Version = $version
|
||||||
|
$this.Architecture = $architecture
|
||||||
|
$this.Platform = $platform
|
||||||
}
|
}
|
||||||
|
|
||||||
[uri] GetBaseUri() {
|
[uri] GetBaseUri() {
|
||||||
@@ -79,11 +79,21 @@ class PythonBuilder {
|
|||||||
return "$pythonToolcacheLocation/$($this.Version)/$($this.Architecture)"
|
return "$pythonToolcacheLocation/$($this.Version)/$($this.Architecture)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[string] GetBaseVersion() {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Return Major.Minor.Patch version string.
|
||||||
|
#>
|
||||||
|
|
||||||
|
return "$($this.Version.Major).$($this.Version.Minor).$($this.Version.Patch)"
|
||||||
|
}
|
||||||
|
|
||||||
[void] PreparePythonToolcacheLocation() {
|
[void] PreparePythonToolcacheLocation() {
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Prepare system hostedtoolcache folder for new Python version.
|
Prepare system hostedtoolcache folder for new Python version.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
$pythonBinariesLocation = $this.GetFullPythonToolcacheLocation()
|
$pythonBinariesLocation = $this.GetFullPythonToolcacheLocation()
|
||||||
|
|
||||||
if (Test-Path $pythonBinariesLocation) {
|
if (Test-Path $pythonBinariesLocation) {
|
||||||
|
|||||||
45
builders/python-version.psm1
Normal file
45
builders/python-version.psm1
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
function Convert-Label() {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Convert generic semver label to native Python label.
|
||||||
|
#>
|
||||||
|
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory)]
|
||||||
|
[string] $label
|
||||||
|
)
|
||||||
|
|
||||||
|
switch ($label) {
|
||||||
|
"alpha" { return "a" }
|
||||||
|
"beta" { return "b" }
|
||||||
|
"rc" { return "rc" }
|
||||||
|
default { throw "Invalid version label '$label'" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Convert-Version {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Convert generic semver version to native Python version.
|
||||||
|
#>
|
||||||
|
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory)]
|
||||||
|
[semver] $version,
|
||||||
|
[char] $delimiter = "."
|
||||||
|
)
|
||||||
|
|
||||||
|
$nativeVersion = "{0}.{1}.{2}" -f $version.Major, $version.Minor, $version.Patch
|
||||||
|
|
||||||
|
if ($version.PreReleaseLabel)
|
||||||
|
{
|
||||||
|
$preReleaseLabel = $version.PreReleaseLabel.Split($delimiter)
|
||||||
|
|
||||||
|
$preReleaseLabelName = Convert-Label -Label $preReleaseLabel[0]
|
||||||
|
$preReleaseLabelVersion = $preReleaseLabel[1]
|
||||||
|
|
||||||
|
$nativeVersion += "${preReleaseLabelName}${preReleaseLabelVersion}"
|
||||||
|
}
|
||||||
|
|
||||||
|
return $nativeVersion
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
using module "./builders/nix-python-builder.psm1"
|
using module "./nix-python-builder.psm1"
|
||||||
|
|
||||||
class UbuntuPythonBuilder : NixPythonBuilder {
|
class UbuntuPythonBuilder : NixPythonBuilder {
|
||||||
<#
|
<#
|
||||||
@@ -17,7 +17,7 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
UbuntuPythonBuilder(
|
UbuntuPythonBuilder(
|
||||||
[version] $version,
|
[semver] $version,
|
||||||
[string] $architecture,
|
[string] $architecture,
|
||||||
[string] $platform
|
[string] $platform
|
||||||
) : Base($version, $architecture, $platform) { }
|
) : Base($version, $architecture, $platform) { }
|
||||||
@@ -32,13 +32,22 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
|
|
||||||
### To build Python with SO we must pass full path to lib folder to the linker
|
### To build Python with SO we must pass full path to lib folder to the linker
|
||||||
$env:LDFLAGS="-Wl,--rpath=${pythonBinariesLocation}/lib"
|
$env:LDFLAGS="-Wl,--rpath=${pythonBinariesLocation}/lib"
|
||||||
$configureString = "./configure --prefix=$pythonBinariesLocation --enable-shared --enable-optimizations"
|
$configureString = "./configure"
|
||||||
|
$configureString += " --prefix=$pythonBinariesLocation"
|
||||||
|
$configureString += " --enable-shared"
|
||||||
|
$configureString += " --enable-optimizations"
|
||||||
|
|
||||||
|
### Compile with ucs4 for Python 2.x. On 3.x, ucs4 is enabled by default
|
||||||
if ($this.Version -lt "3.0.0") {
|
if ($this.Version -lt "3.0.0") {
|
||||||
### Compile with ucs4 for Python 2.x. On 3.x, ucs4 is enabled by default
|
|
||||||
$configureString += " --enable-unicode=ucs4"
|
$configureString += " --enable-unicode=ucs4"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*
|
||||||
|
### Link to documentation (https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.enable_load_extension)
|
||||||
|
if ($this.Version -ge "3.2.0") {
|
||||||
|
$configureString += " --enable-loadable-sqlite-extensions"
|
||||||
|
}
|
||||||
|
|
||||||
Execute-Command -Command $configureString
|
Execute-Command -Command $configureString
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,6 +68,7 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
} else {
|
} else {
|
||||||
$tkinterInstallString = "sudo apt install -y python-tk tk-dev"
|
$tkinterInstallString = "sudo apt install -y python-tk tk-dev"
|
||||||
}
|
}
|
||||||
|
|
||||||
Execute-Command -Command $tkinterInstallString
|
Execute-Command -Command $tkinterInstallString
|
||||||
|
|
||||||
### Install dependent packages
|
### Install dependent packages
|
||||||
@@ -76,7 +86,7 @@ class UbuntuPythonBuilder : NixPythonBuilder {
|
|||||||
Execute-Command -Command "sudo apt install -y $_"
|
Execute-Command -Command "sudo apt install -y $_"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this.Platform -ne "ubuntu-1604") {
|
if ($this.Platform -ne "linux-16.04") {
|
||||||
### On Ubuntu-1804, libgdbm-compat-dev has older modules that are no longer in libgdbm-dev
|
### On Ubuntu-1804, libgdbm-compat-dev has older modules that are no longer in libgdbm-dev
|
||||||
Execute-Command -Command "sudo apt install -y libgdbm-compat-dev"
|
Execute-Command -Command "sudo apt install -y libgdbm-compat-dev"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using module "./builders/python-builder.psm1"
|
using module "./python-builder.psm1"
|
||||||
|
|
||||||
class WinPythonBuilder : PythonBuilder {
|
class WinPythonBuilder : PythonBuilder {
|
||||||
<#
|
<#
|
||||||
@@ -27,7 +27,7 @@ class WinPythonBuilder : PythonBuilder {
|
|||||||
[string] $OutputArtifactName
|
[string] $OutputArtifactName
|
||||||
|
|
||||||
WinPythonBuilder(
|
WinPythonBuilder(
|
||||||
[version] $version,
|
[semver] $version,
|
||||||
[string] $architecture,
|
[string] $architecture,
|
||||||
[string] $platform
|
[string] $platform
|
||||||
) : Base($version, $architecture, $platform) {
|
) : Base($version, $architecture, $platform) {
|
||||||
@@ -72,10 +72,12 @@ class WinPythonBuilder : PythonBuilder {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
$base = $this.GetBaseUri()
|
$base = $this.GetBaseUri()
|
||||||
|
$versionName = $this.GetBaseVersion()
|
||||||
|
$nativeVersion = Convert-Version -version $this.Version
|
||||||
$architecture = $this.GetArchitectureExtension()
|
$architecture = $this.GetArchitectureExtension()
|
||||||
$extension = $this.GetPythonExtension()
|
$extension = $this.GetPythonExtension()
|
||||||
|
|
||||||
$uri = "${base}/$($this.Version)/python-$($this.Version)${architecture}${extension}"
|
$uri = "${base}/${versionName}/python-${nativeVersion}${architecture}${extension}"
|
||||||
|
|
||||||
return $uri
|
return $uri
|
||||||
}
|
}
|
||||||
|
|||||||
8
config/python-manifest-config.json
Normal file
8
config/python-manifest-config.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"regex": "python-\\d+\\.\\d+\\.\\d+-(\\w+\\.\\d+)?-?(\\w+)-(\\d+\\.\\d+)?-?(x\\d+)",
|
||||||
|
"groups": {
|
||||||
|
"arch": 4,
|
||||||
|
"platform": 2,
|
||||||
|
"platform_version": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
1
helpers
Submodule
1
helpers
Submodule
Submodule helpers added at f8f76caff1
@@ -1,89 +0,0 @@
|
|||||||
class AzureDevOpsApi
|
|
||||||
{
|
|
||||||
[string] $BaseUrl
|
|
||||||
[string] $RepoOwner
|
|
||||||
[object] $AuthHeader
|
|
||||||
|
|
||||||
AzureDevOpsApi(
|
|
||||||
[string] $TeamFoundationCollectionUri,
|
|
||||||
[string] $ProjectName,
|
|
||||||
[string] $AccessToken
|
|
||||||
) {
|
|
||||||
$this.BaseUrl = $this.BuildBaseUrl($TeamFoundationCollectionUri, $ProjectName)
|
|
||||||
$this.AuthHeader = $this.BuildAuth($AccessToken)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] hidden BuildAuth([string]$AccessToken) {
|
|
||||||
if ([string]::IsNullOrEmpty($AccessToken)) {
|
|
||||||
return $null
|
|
||||||
}
|
|
||||||
return @{
|
|
||||||
Authorization = "Bearer $AccessToken"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[string] hidden BuildBaseUrl([string]$TeamFoundationCollectionUri, [string]$ProjectName) {
|
|
||||||
return "${TeamFoundationCollectionUri}/${ProjectName}/_apis"
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] QueueBuild([string]$ToolVersion, [string]$SourceBranch, [string]$SourceVersion, [UInt32]$DefinitionId){
|
|
||||||
$url = "build/builds"
|
|
||||||
|
|
||||||
# The content of parameters field should be a json string
|
|
||||||
$buildParameters = @{ VERSION = $ToolVersion } | ConvertTo-Json
|
|
||||||
|
|
||||||
$body = @{
|
|
||||||
definition = @{
|
|
||||||
id = $DefinitionId
|
|
||||||
}
|
|
||||||
sourceBranch = $SourceBranch
|
|
||||||
sourceVersion = $SourceVersion
|
|
||||||
parameters = $buildParameters
|
|
||||||
} | ConvertTo-Json
|
|
||||||
|
|
||||||
return $this.InvokeRestMethod($url, 'POST', $body)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] GetBuildInfo([UInt32]$BuildId){
|
|
||||||
$url = "build/builds/$BuildId"
|
|
||||||
|
|
||||||
return $this.InvokeRestMethod($url, 'GET', $null)
|
|
||||||
}
|
|
||||||
|
|
||||||
[string] hidden BuildUrl([string]$Url) {
|
|
||||||
return "$($this.BaseUrl)/${Url}/?api-version=5.1"
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] hidden InvokeRestMethod(
|
|
||||||
[string] $Url,
|
|
||||||
[string] $Method,
|
|
||||||
[string] $Body
|
|
||||||
) {
|
|
||||||
$requestUrl = $this.BuildUrl($Url)
|
|
||||||
$params = @{
|
|
||||||
Method = $Method
|
|
||||||
ContentType = "application/json"
|
|
||||||
Uri = $requestUrl
|
|
||||||
Headers = @{}
|
|
||||||
}
|
|
||||||
if ($this.AuthHeader) {
|
|
||||||
$params.Headers += $this.AuthHeader
|
|
||||||
}
|
|
||||||
if (![string]::IsNullOrEmpty($body)) {
|
|
||||||
$params.Body = $Body
|
|
||||||
}
|
|
||||||
|
|
||||||
return Invoke-RestMethod @params
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-AzureDevOpsApi {
|
|
||||||
param (
|
|
||||||
[string] $TeamFoundationCollectionUri,
|
|
||||||
[string] $ProjectName,
|
|
||||||
[string] $AccessToken
|
|
||||||
)
|
|
||||||
|
|
||||||
return [AzureDevOpsApi]::New($TeamFoundationCollectionUri, $ProjectName, $AccessToken)
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
Import-Module (Join-Path $PSScriptRoot "azure-devops-api.ps1")
|
|
||||||
|
|
||||||
class BuildInfo
|
|
||||||
{
|
|
||||||
[AzureDevOpsApi] $AzureDevOpsApi
|
|
||||||
[String] $Name
|
|
||||||
[UInt32] $Id
|
|
||||||
[String] $Status
|
|
||||||
[String] $Result
|
|
||||||
[String] $Link
|
|
||||||
|
|
||||||
BuildInfo([AzureDevOpsApi] $AzureDevOpsApi, [object] $Build)
|
|
||||||
{
|
|
||||||
$this.AzureDevOpsApi = $AzureDevOpsApi
|
|
||||||
$this.Id = $Build.id
|
|
||||||
$this.Name = $Build.buildNumber
|
|
||||||
$this.Link = $Build._links.web.href
|
|
||||||
$this.Status = $Build.status
|
|
||||||
$this.Result = $Build.result
|
|
||||||
}
|
|
||||||
|
|
||||||
[boolean] IsFinished() {
|
|
||||||
return ($this.Status -eq "completed") -or ($this.Status -eq "cancelling")
|
|
||||||
}
|
|
||||||
|
|
||||||
[boolean] IsSuccess() {
|
|
||||||
return $this.Result -eq "succeeded"
|
|
||||||
}
|
|
||||||
|
|
||||||
[void] UpdateBuildInfo() {
|
|
||||||
$buildInfo = $this.AzureDevOpsApi.GetBuildInfo($this.Id)
|
|
||||||
$this.Status = $buildInfo.status
|
|
||||||
$this.Result = $buildInfo.result
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-BuildInfo {
|
|
||||||
param (
|
|
||||||
[AzureDevOpsApi] $AzureDevOpsApi,
|
|
||||||
[object] $Build
|
|
||||||
)
|
|
||||||
|
|
||||||
return [BuildInfo]::New($AzureDevOpsApi, $Build)
|
|
||||||
}
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
param (
|
|
||||||
[Parameter(Mandatory)] [string] $TeamFoundationCollectionUri,
|
|
||||||
[Parameter(Mandatory)] [string] $AzureDevOpsProjectName,
|
|
||||||
[Parameter(Mandatory)] [string] $AzureDevOpsAccessToken,
|
|
||||||
[Parameter(Mandatory)] [string] $SourceBranch,
|
|
||||||
[Parameter(Mandatory)] [string] $ToolVersions,
|
|
||||||
[Parameter(Mandatory)] [UInt32] $DefinitionId,
|
|
||||||
[string] $SourceVersion
|
|
||||||
)
|
|
||||||
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "azure-devops-api.ps1")
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "build-info.ps1")
|
|
||||||
|
|
||||||
function Queue-Builds {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)] [AzureDevOpsApi] $AzureDevOpsApi,
|
|
||||||
[Parameter(Mandatory)] [string] $ToolVersions,
|
|
||||||
[Parameter(Mandatory)] [string] $SourceBranch,
|
|
||||||
[Parameter(Mandatory)] [string] $SourceVersion,
|
|
||||||
[Parameter(Mandatory)] [string] $DefinitionId
|
|
||||||
)
|
|
||||||
|
|
||||||
[BuildInfo[]]$queuedBuilds = @()
|
|
||||||
|
|
||||||
$ToolVersions.Split(',') | ForEach-Object {
|
|
||||||
$version = $_.Trim()
|
|
||||||
Write-Host "Queue build for $version..."
|
|
||||||
$queuedBuild = $AzureDevOpsApi.QueueBuild($version, $SourceBranch, $SourceVersion, $DefinitionId)
|
|
||||||
$buildInfo = Get-BuildInfo -AzureDevOpsApi $AzureDevOpsApi -Build $queuedBuild
|
|
||||||
Write-Host "Queued build: $($buildInfo.Link)"
|
|
||||||
$queuedBuilds += $buildInfo
|
|
||||||
}
|
|
||||||
|
|
||||||
return $queuedBuilds
|
|
||||||
}
|
|
||||||
|
|
||||||
function Wait-Builds {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)] [BuildInfo[]] $Builds
|
|
||||||
)
|
|
||||||
|
|
||||||
$timeoutBetweenRefreshSec = 30
|
|
||||||
|
|
||||||
do {
|
|
||||||
# If build is still running - refresh its status
|
|
||||||
foreach($build in $builds) {
|
|
||||||
if (!$build.IsFinished()) {
|
|
||||||
$build.UpdateBuildInfo()
|
|
||||||
|
|
||||||
if ($build.IsFinished()) {
|
|
||||||
Write-Host "The $($build.Name) build was completed: $($build.Link)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$runningBuildsCount = ($builds | Where-Object { !$_.IsFinished() }).Length
|
|
||||||
|
|
||||||
Start-Sleep -Seconds $timeoutBetweenRefreshSec
|
|
||||||
} while($runningBuildsCount -gt 0)
|
|
||||||
}
|
|
||||||
|
|
||||||
function Make-BuildsOutput {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)] [BuildInfo[]] $Builds
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Host "Builds info:"
|
|
||||||
$builds | Format-Table -AutoSize -Property Name,Id,Status,Result,Link | Out-String -Width 10000
|
|
||||||
|
|
||||||
# Return exit code based on status of builds
|
|
||||||
$failedBuilds = ($builds | Where-Object { !$_.IsSuccess() })
|
|
||||||
if ($failedBuilds.Length -ne 0) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;]Builds failed"
|
|
||||||
$failedBuilds | ForEach-Object -Process { Write-Host "##vso[task.logissue type=error;]Name: $($_.Name); Link: $($_.Link)" }
|
|
||||||
Write-Host "##vso[task.complete result=Failed]"
|
|
||||||
} else {
|
|
||||||
Write-host "##[section] All builds have been passed successfully"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$azureDevOpsApi = Get-AzureDevOpsApi -TeamFoundationCollectionUri $TeamFoundationCollectionUri `
|
|
||||||
-ProjectName $AzureDevOpsProjectName `
|
|
||||||
-AccessToken $AzureDevOpsAccessToken
|
|
||||||
|
|
||||||
$queuedBuilds = Queue-Builds -AzureDevOpsApi $azureDevOpsApi `
|
|
||||||
-ToolVersions $ToolVersions `
|
|
||||||
-SourceBranch $SourceBranch `
|
|
||||||
-SourceVersion $SourceVersion `
|
|
||||||
-DefinitionId $DefinitionId
|
|
||||||
|
|
||||||
Write-Host "Waiting results of builds ..."
|
|
||||||
Wait-Builds -Builds $queuedBuilds
|
|
||||||
|
|
||||||
Make-BuildsOutput -Builds $queuedBuilds
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
The execute command and print all output to the logs
|
|
||||||
#>
|
|
||||||
function Execute-Command {
|
|
||||||
[CmdletBinding()]
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)][string] $Command
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Debug "Execute $Command"
|
|
||||||
|
|
||||||
try {
|
|
||||||
Invoke-Expression $Command | ForEach-Object { Write-Host $_ }
|
|
||||||
}
|
|
||||||
catch {
|
|
||||||
Write-Host "Error happened during command execution: $Command"
|
|
||||||
Write-Host "##vso[task.logissue type=error;] $_"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Download file from url and return local path to file
|
|
||||||
#>
|
|
||||||
function Download-File {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[Uri]$Uri,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$OutputFolder
|
|
||||||
)
|
|
||||||
|
|
||||||
$targetFilename = [IO.Path]::GetFileName($Uri)
|
|
||||||
$targetFilepath = Join-Path $OutputFolder $targetFilename
|
|
||||||
|
|
||||||
Write-Debug "Download source from $Uri to $OutFile"
|
|
||||||
try {
|
|
||||||
(New-Object System.Net.WebClient).DownloadFile($Uri, $targetFilepath)
|
|
||||||
return $targetFilepath
|
|
||||||
} catch {
|
|
||||||
Write-Host "Error during downloading file from '$Uri'"
|
|
||||||
"$_"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Generate file that contains the list of all files in particular directory
|
|
||||||
#>
|
|
||||||
function New-ToolStructureDump {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$ToolPath,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$OutputFolder
|
|
||||||
)
|
|
||||||
|
|
||||||
$outputFile = Join-Path $OutputFolder "tools_structure.txt"
|
|
||||||
|
|
||||||
$folderContent = Get-ChildItem -Path $ToolPath -Recurse | Sort-Object | Select-Object -Property FullName, Length
|
|
||||||
$folderContent | ForEach-Object {
|
|
||||||
$relativePath = $_.FullName.Replace($ToolPath, "");
|
|
||||||
return "${relativePath}"
|
|
||||||
} | Out-File -FilePath $outputFile
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Check if it is macOS / Ubuntu platform
|
|
||||||
#>
|
|
||||||
function IsNixPlatform {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()]
|
|
||||||
[String]$Platform
|
|
||||||
)
|
|
||||||
|
|
||||||
return ($Platform -match "macos") -or ($Platform -match "ubuntu")
|
|
||||||
}
|
|
||||||
@@ -1,158 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Generate versions manifest based on repository releases
|
|
||||||
|
|
||||||
.DESCRIPTION
|
|
||||||
Versions manifest is needed to find the latest assets for particular version of tool
|
|
||||||
.PARAMETER GitHubRepositoryOwner
|
|
||||||
Required parameter. The organization which tool repository belongs
|
|
||||||
.PARAMETER GitHubRepositoryName
|
|
||||||
Optional parameter. The name of tool repository
|
|
||||||
.PARAMETER GitHubAccessToken
|
|
||||||
Required parameter. PAT Token to overcome GitHub API Rate limit
|
|
||||||
.PARAMETER OutputFile
|
|
||||||
Required parameter. File "*.json" where generated results will be saved
|
|
||||||
.PARAMETER PlatformMapFile
|
|
||||||
Optional parameter. Path to the json file with platform map
|
|
||||||
Structure example:
|
|
||||||
{
|
|
||||||
"macos-1014": [
|
|
||||||
{
|
|
||||||
"platform": "darwin",
|
|
||||||
"platform_version": "10.14"
|
|
||||||
}, ...
|
|
||||||
], ...
|
|
||||||
}
|
|
||||||
#>
|
|
||||||
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)] [string] $GitHubRepositoryOwner,
|
|
||||||
[Parameter(Mandatory)] [string] $GitHubRepositoryName,
|
|
||||||
[Parameter(Mandatory)] [string] $GitHubAccessToken,
|
|
||||||
[Parameter(Mandatory)] [string] $OutputFile,
|
|
||||||
[string] $PlatformMapFile
|
|
||||||
)
|
|
||||||
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "github/github-api.psm1")
|
|
||||||
|
|
||||||
if ($PlatformMapFile -and (Test-Path $PlatformMapFile)) {
|
|
||||||
$PlatformMap = Get-Content $PlatformMapFile -Raw | ConvertFrom-Json -AsHashtable
|
|
||||||
} else {
|
|
||||||
$PlatformMap = @{}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-FileNameWithoutExtension {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)][string]$Filename
|
|
||||||
)
|
|
||||||
|
|
||||||
if ($Filename.EndsWith(".tar.gz")) {
|
|
||||||
$Filename = [IO.path]::GetFileNameWithoutExtension($Filename)
|
|
||||||
}
|
|
||||||
|
|
||||||
return [IO.path]::GetFileNameWithoutExtension($Filename)
|
|
||||||
}
|
|
||||||
|
|
||||||
function New-AssetItem {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)][string]$Filename,
|
|
||||||
[Parameter(Mandatory)][string]$DownloadUrl,
|
|
||||||
[Parameter(Mandatory)][string]$Arch,
|
|
||||||
[Parameter(Mandatory)][string]$Platform,
|
|
||||||
[string]$PlatformVersion
|
|
||||||
)
|
|
||||||
$asset = New-Object PSObject
|
|
||||||
|
|
||||||
$asset | Add-Member -Name "filename" -Value $Filename -MemberType NoteProperty
|
|
||||||
$asset | Add-Member -Name "arch" -Value $Arch -MemberType NoteProperty
|
|
||||||
$asset | Add-Member -Name "platform" -Value $Platform -MemberType NoteProperty
|
|
||||||
if ($PlatformVersion) { $asset | Add-Member -Name "platform_version" -Value $PlatformVersion -MemberType NoteProperty }
|
|
||||||
$asset | Add-Member -Name "download_url" -Value $DownloadUrl -MemberType NoteProperty
|
|
||||||
|
|
||||||
return $asset
|
|
||||||
}
|
|
||||||
|
|
||||||
function Build-AssetsList {
|
|
||||||
param (
|
|
||||||
[AllowEmptyCollection()]
|
|
||||||
[Parameter(Mandatory)][array]$ReleaseAssets
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
$assets = @()
|
|
||||||
foreach($releaseAsset in $ReleaseAssets) {
|
|
||||||
$filename = Get-FileNameWithoutExtension -Filename $releaseAsset.name
|
|
||||||
$parts = $filename.Split("-")
|
|
||||||
$arch = $parts[-1]
|
|
||||||
$buildPlatform = [string]::Join("-", $parts[2..($parts.Length-2)])
|
|
||||||
|
|
||||||
if ($PlatformMap[$buildPlatform]) {
|
|
||||||
$PlatformMap[$buildPlatform] | ForEach-Object {
|
|
||||||
$assets += New-AssetItem -Filename $releaseAsset.name `
|
|
||||||
-DownloadUrl $releaseAsset.browser_download_url `
|
|
||||||
-Arch $arch `
|
|
||||||
-Platform $_.platform `
|
|
||||||
-PlatformVersion $_.platform_version
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
$assets += New-AssetItem -Filename $releaseAsset.name `
|
|
||||||
-DownloadUrl $releaseAsset.browser_download_url `
|
|
||||||
-Arch $arch `
|
|
||||||
-Platform $buildPlatform
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $assets
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-VersionFromRelease {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)][object]$Release
|
|
||||||
)
|
|
||||||
# Release name can contain additional information after ':' so filter it
|
|
||||||
[string]$releaseName = $Release.name.Split(':')[0]
|
|
||||||
[Version]$version = $null
|
|
||||||
if (![Version]::TryParse($releaseName, [ref]$version)) {
|
|
||||||
throw "Release '$($Release.id)' has invalid title '$($Release.name)'. It can't be parsed as version. ( $($Release.html_url) )"
|
|
||||||
}
|
|
||||||
|
|
||||||
return $version
|
|
||||||
}
|
|
||||||
|
|
||||||
function Build-VersionsManifest {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)][array]$Releases
|
|
||||||
)
|
|
||||||
|
|
||||||
$Releases = $Releases | Sort-Object -Property "published_at" -Descending
|
|
||||||
|
|
||||||
$versionsHash = @{}
|
|
||||||
foreach ($release in $Releases) {
|
|
||||||
if (($release.draft -eq $true) -or ($release.prerelease -eq $true)) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
[Version]$version = Get-VersionFromRelease $release
|
|
||||||
$versionKey = $version.ToString()
|
|
||||||
|
|
||||||
if ($versionsHash.ContainsKey($versionKey)) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
$versionsHash.Add($versionKey, [PSCustomObject]@{
|
|
||||||
version = $versionKey
|
|
||||||
stable = $true
|
|
||||||
release_url = $release.html_url
|
|
||||||
files = Build-AssetsList $release.assets
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
# Sort versions by descending
|
|
||||||
return $versionsHash.Values | Sort-Object -Property @{ Expression = { [Version]$_.version }; Descending = $true }
|
|
||||||
}
|
|
||||||
|
|
||||||
$gitHubApi = Get-GitHubApi -AccountName $GitHubRepositoryOwner -ProjectName $GitHubRepositoryName -AccessToken $GitHubAccessToken
|
|
||||||
$releases = $gitHubApi.GetGitHubReleases()
|
|
||||||
$versionIndex = Build-VersionsManifest $releases
|
|
||||||
$versionIndex | ConvertTo-Json -Depth 5 | Out-File $OutputFile -Encoding UTF8NoBOM -Force
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Create commit with all unstaged changes in repository and create pull-request
|
|
||||||
|
|
||||||
.PARAMETER RepositoryOwner
|
|
||||||
Required parameter. The organization which tool repository belongs
|
|
||||||
.PARAMETER RepositoryName
|
|
||||||
Optional parameter. The name of tool repository
|
|
||||||
.PARAMETER AccessToken
|
|
||||||
Required parameter. PAT Token to authorize
|
|
||||||
.PARAMETER BranchName
|
|
||||||
Required parameter. The name of branch where changes will be pushed
|
|
||||||
.PARAMETER CommitMessage
|
|
||||||
Required parameter. The commit message to push changes
|
|
||||||
.PARAMETER PullRequestTitle
|
|
||||||
Required parameter. The title of pull-request
|
|
||||||
.PARAMETER PullRequestBody
|
|
||||||
Required parameter. The description of pull-request
|
|
||||||
#>
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)] [string] $RepositoryOwner,
|
|
||||||
[Parameter(Mandatory)] [string] $RepositoryName,
|
|
||||||
[Parameter(Mandatory)] [string] $AccessToken,
|
|
||||||
[Parameter(Mandatory)] [string] $BranchName,
|
|
||||||
[Parameter(Mandatory)] [string] $CommitMessage,
|
|
||||||
[Parameter(Mandatory)] [string] $PullRequestTitle,
|
|
||||||
[Parameter(Mandatory)] [string] $PullRequestBody
|
|
||||||
)
|
|
||||||
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "github-api.psm1")
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "git.psm1")
|
|
||||||
|
|
||||||
function Update-PullRequest {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[object] $GitHubApi,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Title,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Body,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $BranchName,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[object] $PullRequest
|
|
||||||
)
|
|
||||||
|
|
||||||
$updatedPullRequest = $GitHubApi.UpdatePullRequest($Title, $Body, $BranchName, $PullRequest.number)
|
|
||||||
|
|
||||||
if (($updatedPullRequest -eq $null) -or ($updatedPullRequest.html_url -eq $null)) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected error occurs while updating pull request."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
Write-host "##[section] Pull request updated: $($updatedPullRequest.html_url)"
|
|
||||||
}
|
|
||||||
|
|
||||||
function Create-PullRequest {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[object] $GitHubApi,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Title,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Body,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $BranchName
|
|
||||||
)
|
|
||||||
|
|
||||||
$createdPullRequest = $GitHubApi.CreateNewPullRequest($Title, $Body, $BranchName)
|
|
||||||
|
|
||||||
if (($createdPullRequest -eq $null) -or ($createdPullRequest.html_url -eq $null)) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected error occurs while creating pull request."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-host "##[section] Pull request created: $($createdPullRequest.html_url)"
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "Configure local git preferences"
|
|
||||||
Git-ConfigureUser -Name "Service account" -Email "no-reply@microsoft.com"
|
|
||||||
|
|
||||||
Write-Host "Create branch: $BranchName"
|
|
||||||
Git-CreateBranch -Name $BranchName
|
|
||||||
|
|
||||||
Write-Host "Create commit"
|
|
||||||
Git-CommitAllChanges -Message $CommitMessage
|
|
||||||
|
|
||||||
Write-Host "Push branch: $BranchName"
|
|
||||||
Git-PushBranch -Name $BranchName -Force $true
|
|
||||||
|
|
||||||
$gitHubApi = Get-GitHubApi -AccountName $RepositoryOwner -ProjectName $RepositoryName -AccessToken $AccessToken
|
|
||||||
$pullRequest = $gitHubApi.GetPullRequest($BranchName, $RepositoryOwner)
|
|
||||||
|
|
||||||
if ($pullRequest.Count -gt 0) {
|
|
||||||
Write-Host "Update pull request"
|
|
||||||
Update-PullRequest -GitHubApi $gitHubApi `
|
|
||||||
-Title $PullRequestTitle `
|
|
||||||
-Body $PullRequestBody `
|
|
||||||
-BranchName $BranchName `
|
|
||||||
-PullRequest $pullRequest[0]
|
|
||||||
} else {
|
|
||||||
Write-Host "Create pull request"
|
|
||||||
Create-PullRequest -GitHubApi $gitHubApi `
|
|
||||||
-Title $PullRequestTitle `
|
|
||||||
-Body $PullRequestBody `
|
|
||||||
-BranchName $BranchName
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Configure git credentials to use with commits
|
|
||||||
#>
|
|
||||||
function Git-ConfigureUser {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Name,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Email
|
|
||||||
)
|
|
||||||
|
|
||||||
git config --global user.name $Name | Out-Host
|
|
||||||
git config --global user.email $Email | Out-Host
|
|
||||||
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected failure occurs while configuring git preferences."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Create new branch
|
|
||||||
#>
|
|
||||||
function Git-CreateBranch {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Name
|
|
||||||
)
|
|
||||||
|
|
||||||
git checkout -b $Name | Out-Host
|
|
||||||
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected failure occurs while creating new branch: $Name."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Commit all staged and unstaged changes
|
|
||||||
#>
|
|
||||||
function Git-CommitAllChanges {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Message
|
|
||||||
)
|
|
||||||
|
|
||||||
git add -A | Out-Host
|
|
||||||
git commit -m "$Message" | Out-Host
|
|
||||||
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected failure occurs while commiting changes."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Push branch to remote repository
|
|
||||||
#>
|
|
||||||
function Git-PushBranch {
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string] $Name,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[boolean] $Force
|
|
||||||
)
|
|
||||||
|
|
||||||
if ($Force) {
|
|
||||||
git push --set-upstream origin $Name --force | Out-Host
|
|
||||||
} else {
|
|
||||||
git push --set-upstream origin $Name | Out-Host
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
Write-Host "##vso[task.logissue type=error;] Unexpected failure occurs while pushing changes."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
The module that contains a bunch of methods to interact with GitHub API V3
|
|
||||||
#>
|
|
||||||
class GitHubApi
|
|
||||||
{
|
|
||||||
[string] $BaseUrl
|
|
||||||
[string] $RepoOwner
|
|
||||||
[object] $AuthHeader
|
|
||||||
|
|
||||||
GitHubApi(
|
|
||||||
[string] $AccountName,
|
|
||||||
[string] $ProjectName,
|
|
||||||
[string] $AccessToken
|
|
||||||
) {
|
|
||||||
$this.BaseUrl = $this.BuildBaseUrl($AccountName, $ProjectName)
|
|
||||||
$this.AuthHeader = $this.BuildAuth($AccessToken)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] hidden BuildAuth([string]$AccessToken) {
|
|
||||||
if ([string]::IsNullOrEmpty($AccessToken)) {
|
|
||||||
return $null
|
|
||||||
}
|
|
||||||
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes("'':${AccessToken}"))
|
|
||||||
return @{
|
|
||||||
Authorization = "Basic ${base64AuthInfo}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[string] hidden BuildBaseUrl([string]$RepositoryOwner, [string]$RepositoryName) {
|
|
||||||
return "https://api.github.com/repos/$RepositoryOwner/$RepositoryName"
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] CreateNewPullRequest([string]$Title, [string]$Body, [string]$BranchName){
|
|
||||||
$requestBody = @{
|
|
||||||
title = $Title
|
|
||||||
body = $Body
|
|
||||||
head = $BranchName
|
|
||||||
base = "master"
|
|
||||||
} | ConvertTo-Json
|
|
||||||
|
|
||||||
$url = "pulls"
|
|
||||||
return $this.InvokeRestMethod($url, 'Post', $null, $requestBody)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] GetPullRequest([string]$BranchName, [string]$RepositoryOwner){
|
|
||||||
$url = "pulls"
|
|
||||||
return $this.InvokeRestMethod($url, 'GET', "head=${RepositoryOwner}:$BranchName&base=master", $null)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] UpdatePullRequest([string]$Title, [string]$Body, [string]$BranchName, [string]$PullRequestNumber){
|
|
||||||
$requestBody = @{
|
|
||||||
title = $Title
|
|
||||||
body = $Body
|
|
||||||
head = $BranchName
|
|
||||||
base = "master"
|
|
||||||
} | ConvertTo-Json
|
|
||||||
|
|
||||||
$url = "pulls/$PullRequestNumber"
|
|
||||||
return $this.InvokeRestMethod($url, 'Post', $null, $requestBody)
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] GetGitHubReleases(){
|
|
||||||
$url = "releases"
|
|
||||||
return $this.InvokeRestMethod($url, 'GET', $null, $null)
|
|
||||||
}
|
|
||||||
|
|
||||||
[string] hidden BuildUrl([string]$Url, [string]$RequestParams) {
|
|
||||||
if ([string]::IsNullOrEmpty($RequestParams)) {
|
|
||||||
return "$($this.BaseUrl)/$($Url)"
|
|
||||||
} else {
|
|
||||||
return "$($this.BaseUrl)/$($Url)?$($RequestParams)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[object] hidden InvokeRestMethod(
|
|
||||||
[string] $Url,
|
|
||||||
[string] $Method,
|
|
||||||
[string] $RequestParams,
|
|
||||||
[string] $Body
|
|
||||||
) {
|
|
||||||
$requestUrl = $this.BuildUrl($Url, $RequestParams)
|
|
||||||
$params = @{
|
|
||||||
Method = $Method
|
|
||||||
ContentType = "application/json"
|
|
||||||
Uri = $requestUrl
|
|
||||||
Headers = @{}
|
|
||||||
}
|
|
||||||
if ($this.AuthHeader) {
|
|
||||||
$params.Headers += $this.AuthHeader
|
|
||||||
}
|
|
||||||
if (![string]::IsNullOrEmpty($Body)) {
|
|
||||||
$params.Body = $Body
|
|
||||||
}
|
|
||||||
|
|
||||||
return Invoke-RestMethod @params
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-GitHubApi {
|
|
||||||
param (
|
|
||||||
[string] $AccountName,
|
|
||||||
[string] $ProjectName,
|
|
||||||
[string] $AccessToken
|
|
||||||
)
|
|
||||||
|
|
||||||
return [GitHubApi]::New($AccountName, $ProjectName, $AccessToken)
|
|
||||||
}
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Pack folder to *.zip format
|
|
||||||
#>
|
|
||||||
function Pack-Zip {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$PathToArchive,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$ToolZipFile
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Debug "Pack $PathToArchive to $ToolZipFile"
|
|
||||||
Push-Location -Path $PathToArchive
|
|
||||||
zip -q -r $ToolZipFile * | Out-Null
|
|
||||||
Pop-Location
|
|
||||||
}
|
|
||||||
|
|
||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Unpack *.tar file
|
|
||||||
#>
|
|
||||||
function Extract-TarArchive {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$ArchivePath,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$OutputDirectory
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Debug "tar -C $OutputDirectory -xzf $ArchivePath --strip 1"
|
|
||||||
tar -C $OutputDirectory -xzf $ArchivePath --strip 1
|
|
||||||
}
|
|
||||||
|
|
||||||
function Create-TarArchive {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$SourceFolder,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$ArchivePath,
|
|
||||||
[string]$CompressionType = "gz"
|
|
||||||
)
|
|
||||||
|
|
||||||
$CompressionTypeArgument = If ([string]::IsNullOrWhiteSpace($CompressionType)) { "" } else { "--${CompressionType}" }
|
|
||||||
|
|
||||||
Push-Location $SourceFolder
|
|
||||||
Write-Debug "tar -c $CompressionTypeArgument -f $ArchivePath ."
|
|
||||||
tar -c $CompressionTypeArgument -f $ArchivePath .
|
|
||||||
Pop-Location
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Pester extension that allows to run command and validate exit code
|
|
||||||
.EXAMPLE
|
|
||||||
"python file.py" | Should -ReturnZeroExitCode
|
|
||||||
#>
|
|
||||||
function ShouldReturnZeroExitCode {
|
|
||||||
Param(
|
|
||||||
[Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
|
||||||
[String]$ActualValue,
|
|
||||||
[switch]$Negate
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Host "Run command '${ActualValue}'"
|
|
||||||
Invoke-Expression -Command $ActualValue | ForEach-Object { Write-Host $_ }
|
|
||||||
$actualExitCode = $LASTEXITCODE
|
|
||||||
|
|
||||||
[bool]$succeeded = $actualExitCode -eq 0
|
|
||||||
if ($Negate) { $succeeded = -not $succeeded }
|
|
||||||
|
|
||||||
if (-not $succeeded)
|
|
||||||
{
|
|
||||||
$failureMessage = "Command '${ActualValue}' has finished with exit code ${actualExitCode}"
|
|
||||||
}
|
|
||||||
|
|
||||||
return New-Object PSObject -Property @{
|
|
||||||
Succeeded = $succeeded
|
|
||||||
FailureMessage = $failureMessage
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Add-AssertionOperator -Name ReturnZeroExitCode `
|
|
||||||
-Test $function:ShouldReturnZeroExitCode
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
function Create-SevenZipArchive {
|
|
||||||
param(
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$SourceFolder,
|
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[String]$ArchivePath,
|
|
||||||
[String]$ArchiveType = "zip",
|
|
||||||
[String]$CompressionLevel = 5
|
|
||||||
)
|
|
||||||
|
|
||||||
$ArchiveTypeArgument = "-t${ArchiveType}"
|
|
||||||
$CompressionLevelArgument = "-mx=${CompressionLevel}"
|
|
||||||
|
|
||||||
Push-Location $SourceFolder
|
|
||||||
Write-Debug "7z a $ArchiveTypeArgument $CompressionLevelArgument $ArchivePath @$SourceFolder"
|
|
||||||
7z a $ArchiveTypeArgument $CompressionLevelArgument $ArchivePath $SourceFolder\*
|
|
||||||
Pop-Location
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
{
|
|
||||||
"macos-1014": [
|
|
||||||
{
|
|
||||||
"platform": "darwin",
|
|
||||||
"platform_version": "10.14"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"platform": "darwin",
|
|
||||||
"platform_version": "10.15"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"ubuntu-1604": [
|
|
||||||
{
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "16.04"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"ubuntu-1804": [
|
|
||||||
{
|
|
||||||
"platform": "linux",
|
|
||||||
"platform_version": "18.04"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"windows-2016": [
|
|
||||||
{
|
|
||||||
"platform": "win32"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,13 +1,12 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
MAJOR_VERSION="{{__VERSION_MAJOR__}}"
|
PYTHON_FULL_VERSION="{{__VERSION_FULL__}}"
|
||||||
MINOR_VERSION="{{__VERSION_MINOR__}}"
|
MAJOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 1)
|
||||||
BUILD_VERSION="{{__VERSION_BUILD__}}"
|
MINOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 2)
|
||||||
|
|
||||||
PYTHON_MAJOR=python$MAJOR_VERSION
|
PYTHON_MAJOR=python$MAJOR_VERSION
|
||||||
PYTHON_MAJOR_DOT_MINOR=python$MAJOR_VERSION.$MINOR_VERSION
|
PYTHON_MAJOR_DOT_MINOR=python$MAJOR_VERSION.$MINOR_VERSION
|
||||||
PYTHON_MAJORMINOR=python$MAJOR_VERSION$MINOR_VERSION
|
PYTHON_MAJORMINOR=python$MAJOR_VERSION$MINOR_VERSION
|
||||||
PYTHON_FULL_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$BUILD_VERSION
|
|
||||||
|
|
||||||
if [ -z ${AGENT_TOOLSDIRECTORY+x} ]; then
|
if [ -z ${AGENT_TOOLSDIRECTORY+x} ]; then
|
||||||
# No AGENT_TOOLSDIRECTORY on GitHub images
|
# No AGENT_TOOLSDIRECTORY on GitHub images
|
||||||
@@ -38,7 +37,7 @@ rm $PYTHON_TOOLCACHE_VERSION_ARCH_PATH/setup.sh
|
|||||||
|
|
||||||
cd $PYTHON_TOOLCACHE_VERSION_ARCH_PATH
|
cd $PYTHON_TOOLCACHE_VERSION_ARCH_PATH
|
||||||
|
|
||||||
echo "Create additional symlinks (Required for UsePythonVersion VSTS task)"
|
echo "Create additional symlinks (Required for the UsePythonVersion Azure Pipelines task and the setup-python GitHub Action)"
|
||||||
ln -s ./bin/$PYTHON_MAJOR_DOT_MINOR python
|
ln -s ./bin/$PYTHON_MAJOR_DOT_MINOR python
|
||||||
|
|
||||||
cd bin/
|
cd bin/
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
[String] $Architecture = "{{__ARCHITECTURE__}}"
|
[String] $Architecture = "{{__ARCHITECTURE__}}"
|
||||||
[Version] $Version = "{{__VERSION__}}"
|
[String] $Version = "{{__VERSION__}}"
|
||||||
[String] $PythonExecName = "{{__PYTHON_EXEC_NAME__}}"
|
[String] $PythonExecName = "{{__PYTHON_EXEC_NAME__}}"
|
||||||
|
|
||||||
function Get-RegistryVersionFilter {
|
function Get-RegistryVersionFilter {
|
||||||
param
|
param(
|
||||||
(
|
|
||||||
[Parameter(Mandatory)][String] $Architecture,
|
[Parameter(Mandatory)][String] $Architecture,
|
||||||
[Parameter(Mandatory)][Int32] $MajorVersion,
|
[Parameter(Mandatory)][Int32] $MajorVersion,
|
||||||
[Parameter(Mandatory)][Int32] $MinorVersion
|
[Parameter(Mandatory)][Int32] $MinorVersion
|
||||||
@@ -12,20 +11,15 @@ function Get-RegistryVersionFilter {
|
|||||||
|
|
||||||
$archFilter = if ($Architecture -eq 'x86') { "32-bit" } else { "64-bit" }
|
$archFilter = if ($Architecture -eq 'x86') { "32-bit" } else { "64-bit" }
|
||||||
### Python 2.7 x86 have no architecture postfix
|
### Python 2.7 x86 have no architecture postfix
|
||||||
if (($Architecture -eq "x86") -and ($MajorVersion -eq 2))
|
if (($Architecture -eq "x86") -and ($MajorVersion -eq 2)) {
|
||||||
{
|
|
||||||
"Python $MajorVersion.$MinorVersion.\d+$"
|
"Python $MajorVersion.$MinorVersion.\d+$"
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
"Python $MajorVersion.$MinorVersion.*($archFilter)"
|
"Python $MajorVersion.$MinorVersion.*($archFilter)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Remove-RegistryEntries
|
function Remove-RegistryEntries {
|
||||||
{
|
param(
|
||||||
param
|
|
||||||
(
|
|
||||||
[Parameter(Mandatory)][String] $Architecture,
|
[Parameter(Mandatory)][String] $Architecture,
|
||||||
[Parameter(Mandatory)][Int32] $MajorVersion,
|
[Parameter(Mandatory)][Int32] $MajorVersion,
|
||||||
[Parameter(Mandatory)][Int32] $MinorVersion
|
[Parameter(Mandatory)][Int32] $MinorVersion
|
||||||
@@ -35,10 +29,8 @@ function Remove-RegistryEntries
|
|||||||
|
|
||||||
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
||||||
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
||||||
foreach ($key in $regKeys)
|
foreach ($key in $regKeys) {
|
||||||
{
|
if ($key.getValue("DisplayName") -match $versionFilter) {
|
||||||
if ($key.getValue("DisplayName") -match $versionFilter)
|
|
||||||
{
|
|
||||||
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -63,40 +55,34 @@ function Remove-RegistryEntries
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Get-ExecParams {
|
function Get-ExecParams {
|
||||||
param
|
param(
|
||||||
(
|
|
||||||
[Parameter(Mandatory)][Boolean] $IsMSI,
|
[Parameter(Mandatory)][Boolean] $IsMSI,
|
||||||
[Parameter(Mandatory)][String] $PythonArchPath
|
[Parameter(Mandatory)][String] $PythonArchPath
|
||||||
)
|
)
|
||||||
|
|
||||||
if ($IsMSI)
|
if ($IsMSI) {
|
||||||
{
|
|
||||||
"TARGETDIR=$PythonArchPath ALLUSERS=1"
|
"TARGETDIR=$PythonArchPath ALLUSERS=1"
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
"DefaultAllUsersTargetDir=$PythonArchPath InstallAllUsers=1"
|
"DefaultAllUsersTargetDir=$PythonArchPath InstallAllUsers=1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$ToolcacheRoot = $env:AGENT_TOOLSDIRECTORY
|
$ToolcacheRoot = $env:AGENT_TOOLSDIRECTORY
|
||||||
if ([string]::IsNullOrEmpty($ToolcacheRoot))
|
if ([string]::IsNullOrEmpty($ToolcacheRoot)) {
|
||||||
{
|
|
||||||
# GitHub images don't have `AGENT_TOOLSDIRECTORY` variable
|
# GitHub images don't have `AGENT_TOOLSDIRECTORY` variable
|
||||||
$ToolcacheRoot = $env:RUNNER_TOOL_CACHE
|
$ToolcacheRoot = $env:RUNNER_TOOL_CACHE
|
||||||
}
|
}
|
||||||
$PythonToolcachePath = Join-Path -Path $ToolcacheRoot -ChildPath "Python"
|
$PythonToolcachePath = Join-Path -Path $ToolcacheRoot -ChildPath "Python"
|
||||||
$PythonVersionPath = Join-Path -Path $PythonToolcachePath -ChildPath $Version.ToString()
|
$PythonVersionPath = Join-Path -Path $PythonToolcachePath -ChildPath $Version
|
||||||
$PythonArchPath = Join-Path -Path $PythonVersionPath -ChildPath $Architecture
|
$PythonArchPath = Join-Path -Path $PythonVersionPath -ChildPath $Architecture
|
||||||
|
|
||||||
$IsMSI = $PythonExecName -match "msi"
|
$IsMSI = $PythonExecName -match "msi"
|
||||||
|
|
||||||
$MajorVersion = $Version.Major
|
$MajorVersion = $Version.Split('.')[0]
|
||||||
$MinorVersion = $Version.Minor
|
$MinorVersion = $Version.Split('.')[1]
|
||||||
|
|
||||||
Write-Host "Check if Python hostedtoolcache folder exist..."
|
Write-Host "Check if Python hostedtoolcache folder exist..."
|
||||||
if (-Not (Test-Path $PythonToolcachePath))
|
if (-Not (Test-Path $PythonToolcachePath)) {
|
||||||
{
|
|
||||||
Write-Host "Create Python toolcache folder"
|
Write-Host "Create Python toolcache folder"
|
||||||
New-Item -ItemType Directory -Path $PythonToolcachePath | Out-Null
|
New-Item -ItemType Directory -Path $PythonToolcachePath | Out-Null
|
||||||
}
|
}
|
||||||
@@ -104,22 +90,17 @@ if (-Not (Test-Path $PythonToolcachePath))
|
|||||||
Write-Host "Check if current Python version is installed..."
|
Write-Host "Check if current Python version is installed..."
|
||||||
$InstalledVersions = Get-Item "$PythonToolcachePath\$MajorVersion.$MinorVersion.*\$Architecture"
|
$InstalledVersions = Get-Item "$PythonToolcachePath\$MajorVersion.$MinorVersion.*\$Architecture"
|
||||||
|
|
||||||
if ($null -ne $InstalledVersions)
|
if ($null -ne $InstalledVersions) {
|
||||||
{
|
|
||||||
Write-Host "Python$MajorVersion.$MinorVersion ($Architecture) was found in $PythonToolcachePath..."
|
Write-Host "Python$MajorVersion.$MinorVersion ($Architecture) was found in $PythonToolcachePath..."
|
||||||
|
|
||||||
foreach ($InstalledVersion in $InstalledVersions)
|
foreach ($InstalledVersion in $InstalledVersions) {
|
||||||
{
|
if (Test-Path -Path $InstalledVersion) {
|
||||||
if (Test-Path -Path $InstalledVersion)
|
|
||||||
{
|
|
||||||
Write-Host "Deleting $InstalledVersion..."
|
Write-Host "Deleting $InstalledVersion..."
|
||||||
Remove-Item -Path $InstalledVersion -Recurse -Force
|
Remove-Item -Path $InstalledVersion -Recurse -Force
|
||||||
Remove-Item -Path "$($InstalledVersion.Parent.FullName)/${Architecture}.complete" -Force -Verbose
|
Remove-Item -Path "$($InstalledVersion.Parent.FullName)/${Architecture}.complete" -Force -Verbose
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "No Python$MajorVersion.$MinorVersion.* found"
|
Write-Host "No Python$MajorVersion.$MinorVersion.* found"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -136,8 +117,7 @@ Write-Host "Install Python $Version in $PythonToolcachePath..."
|
|||||||
$ExecParams = Get-ExecParams -IsMSI $IsMSI -PythonArchPath $PythonArchPath
|
$ExecParams = Get-ExecParams -IsMSI $IsMSI -PythonArchPath $PythonArchPath
|
||||||
|
|
||||||
cmd.exe /c "cd $PythonArchPath && call $PythonExecName $ExecParams /quiet"
|
cmd.exe /c "cd $PythonArchPath && call $PythonExecName $ExecParams /quiet"
|
||||||
if ($LASTEXITCODE -ne 0)
|
if ($LASTEXITCODE -ne 0) {
|
||||||
{
|
|
||||||
Throw "Error happened during Python installation"
|
Throw "Error happened during Python installation"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
44
tests/ManifestConfig.Tests.ps1
Normal file
44
tests/ManifestConfig.Tests.ps1
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
Import-Module (Join-Path $PSScriptRoot "../helpers/packages-generation/manifest-utils.psm1")
|
||||||
|
|
||||||
|
$ConfigurationFile = Join-Path $PSScriptRoot "../config/python-manifest-config.json"
|
||||||
|
$Configuration = Read-ConfigurationFile -Filepath $ConfigurationFile
|
||||||
|
|
||||||
|
$stableTestCases = @(
|
||||||
|
@{ ReleaseName = "python-3.8.3-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.8.3-linux-16.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "16.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.8.3-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.8.3-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.8.3-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.8.3-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} }
|
||||||
|
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
||||||
|
|
||||||
|
$unstableTestCases = @(
|
||||||
|
@{ ReleaseName = "python-3.9.0-alpha.2-darwin-x64.tar.gz"; ExpectedResult = @{ platform = "darwin"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.9.0-beta.1-linux-16.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "16.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.9.0-rc.4-linux-18.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "18.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.9.0-beta.2-linux-20.04-x64.tar.gz"; ExpectedResult = @{ platform = "linux"; platform_version = "20.04"; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.9.0-beta.2-win32-x64.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x64"} },
|
||||||
|
@{ ReleaseName = "python-3.9.0-beta.2-win32-x86.zip"; ExpectedResult = @{ platform = "win32"; platform_version = $null; arch = "x86"} }
|
||||||
|
) | ForEach-Object { $_.Configuration = $Configuration; $_ }
|
||||||
|
|
||||||
|
Describe "Python manifest config" {
|
||||||
|
Context "Stable versions" {
|
||||||
|
It "<ReleaseName>" -TestCases $stableTestCases {
|
||||||
|
$Release = @{ name = $ReleaseName }
|
||||||
|
$asset = New-AssetItem -ReleaseAsset $Release -Configuration $Configuration
|
||||||
|
$asset.platform | Should -Be $ExpectedResult.platform
|
||||||
|
$asset.platform_version | Should -Be $ExpectedResult.platform_version
|
||||||
|
$asset.arch | Should -Be $ExpectedResult.arch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Context "Prerelease versions" {
|
||||||
|
It "<ReleaseName>" -TestCases $unstableTestCases {
|
||||||
|
$Release = @{ name = $ReleaseName }
|
||||||
|
$asset = New-AssetItem -ReleaseAsset $Release -Configuration $Configuration
|
||||||
|
$asset.platform | Should -Be $ExpectedResult.platform
|
||||||
|
$asset.platform_version | Should -Be $ExpectedResult.platform_version
|
||||||
|
$asset.arch | Should -Be $ExpectedResult.arch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
if ($env:PLATFORM -match 'windows') {
|
|
||||||
$PythonFilter = "Name like '%Python%'"
|
|
||||||
Get-WmiObject Win32_Product -Filter $PythonFilter | Foreach-Object {
|
|
||||||
Write-Host "Uninstalling $($_.Name) ..."
|
|
||||||
$_.Uninstall() | Out-Null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$PythonToolcachePath = Join-Path -Path $env:AGENT_TOOLSDIRECTORY -ChildPath "Python"
|
|
||||||
Write-Host "Removing Python toolcache directory ..."
|
|
||||||
Remove-Item -Path $PythonToolcachePath -Recurse -Force
|
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
param (
|
param (
|
||||||
[Version] [Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
[semver] [Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
||||||
$Version,
|
$Version,
|
||||||
[String] [Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
[string] [Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
||||||
$Platform
|
$Platform
|
||||||
)
|
)
|
||||||
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1")
|
Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1")
|
||||||
Import-Module (Join-Path $PSScriptRoot "../helpers/common-helpers.psm1")
|
Import-Module (Join-Path $PSScriptRoot "../helpers/common-helpers.psm1")
|
||||||
|
Import-Module (Join-Path $PSScriptRoot "../builders/python-version.psm1")
|
||||||
|
|
||||||
function Analyze-MissingModules([string] $buildOutputLocation) {
|
function Analyze-MissingModules([string] $buildOutputLocation) {
|
||||||
$searchStringStart = "Failed to build these modules:"
|
$searchStringStart = "Failed to build these modules:"
|
||||||
@@ -41,6 +42,17 @@ Describe "Tests" {
|
|||||||
"python ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
"python ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($Version -ge "3.2.0") {
|
||||||
|
It "Check if sqlite3 module is installed" {
|
||||||
|
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
It "Run pip" {
|
||||||
|
"pip install requests" | Should -ReturnZeroExitCode
|
||||||
|
"pip uninstall requests -y" | Should -ReturnZeroExitCode
|
||||||
|
}
|
||||||
|
|
||||||
if (IsNixPlatform $Platform) {
|
if (IsNixPlatform $Platform) {
|
||||||
|
|
||||||
It "Check for failed modules in build_output" {
|
It "Check for failed modules in build_output" {
|
||||||
@@ -53,7 +65,8 @@ Describe "Tests" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "Check if python configuration is correct" {
|
It "Check if python configuration is correct" {
|
||||||
"python ./sources/python-config-test.py" | Should -ReturnZeroExitCode
|
$nativeVersion = Convert-Version -version $Version
|
||||||
|
"python ./sources/python-config-test.py $Version $nativeVersion" | Should -ReturnZeroExitCode
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Check if shared libraries are linked correctly" {
|
It "Check if shared libraries are linked correctly" {
|
||||||
@@ -62,7 +75,7 @@ Describe "Tests" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Pyinstaller 3.5 does not support Python 3.8.0. Check issue https://github.com/pyinstaller/pyinstaller/issues/4311
|
# Pyinstaller 3.5 does not support Python 3.8.0. Check issue https://github.com/pyinstaller/pyinstaller/issues/4311
|
||||||
if ($Version -lt "3.8.0") {
|
if ($Version -lt "3.8.0" -and $Version.Major -ne "2") {
|
||||||
It "Validate Pyinstaller" {
|
It "Validate Pyinstaller" {
|
||||||
"pip install pyinstaller" | Should -ReturnZeroExitCode
|
"pip install pyinstaller" | Should -ReturnZeroExitCode
|
||||||
"pyinstaller --onefile ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
"pyinstaller --onefile ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import distutils.sysconfig
|
import distutils.sysconfig
|
||||||
|
from distutils.version import StrictVersion
|
||||||
import sysconfig
|
import sysconfig
|
||||||
import sys
|
import sys
|
||||||
import platform
|
import platform
|
||||||
@@ -6,7 +7,8 @@ import os
|
|||||||
|
|
||||||
# Define variables
|
# Define variables
|
||||||
os_type = platform.system()
|
os_type = platform.system()
|
||||||
version = sys.version.split(" ")[0]
|
version = sys.argv[1]
|
||||||
|
nativeVersion = sys.argv[2]
|
||||||
|
|
||||||
lib_dir_path = sysconfig.get_config_var('LIBDIR')
|
lib_dir_path = sysconfig.get_config_var('LIBDIR')
|
||||||
ld_library_name = sysconfig.get_config_var('LDLIBRARY')
|
ld_library_name = sysconfig.get_config_var('LDLIBRARY')
|
||||||
@@ -41,7 +43,7 @@ else:
|
|||||||
### Validate macOS
|
### Validate macOS
|
||||||
if os_type == 'Darwin':
|
if os_type == 'Darwin':
|
||||||
### Validate openssl links
|
### Validate openssl links
|
||||||
if version < "3.7.0":
|
if StrictVersion(nativeVersion) < StrictVersion("3.7.0"):
|
||||||
expected_ldflags = '-L/usr/local/opt/openssl@1.1/lib'
|
expected_ldflags = '-L/usr/local/opt/openssl@1.1/lib'
|
||||||
ldflags = sysconfig.get_config_var('LDFLAGS')
|
ldflags = sysconfig.get_config_var('LDFLAGS')
|
||||||
|
|
||||||
@@ -49,8 +51,8 @@ if os_type == 'Darwin':
|
|||||||
print('Invalid ldflags: %s; Expected: %s' % (ldflags, expected_ldflags))
|
print('Invalid ldflags: %s; Expected: %s' % (ldflags, expected_ldflags))
|
||||||
exit(1)
|
exit(1)
|
||||||
else:
|
else:
|
||||||
expected_openssl_includes = '-I/usr/local/opt/openssl/include'
|
expected_openssl_includes = '-I/usr/local/opt/openssl@1.1/include'
|
||||||
expected_openssl_ldflags ='-L/usr/local/opt/openssl/lib'
|
expected_openssl_ldflags ='-L/usr/local/opt/openssl@1.1/lib'
|
||||||
|
|
||||||
openssl_includes = sysconfig.get_config_var('OPENSSL_INCLUDES')
|
openssl_includes = sysconfig.get_config_var('OPENSSL_INCLUDES')
|
||||||
openssl_ldflags = sysconfig.get_config_var('OPENSSL_LDFLAGS')
|
openssl_ldflags = sysconfig.get_config_var('OPENSSL_LDFLAGS')
|
||||||
|
|||||||
@@ -139,6 +139,7 @@ standard_library = [
|
|||||||
'sre_constants',
|
'sre_constants',
|
||||||
'sre_parse',
|
'sre_parse',
|
||||||
'ssl',
|
'ssl',
|
||||||
|
'_ssl',
|
||||||
'stat',
|
'stat',
|
||||||
'string',
|
'string',
|
||||||
'stringprep',
|
'stringprep',
|
||||||
@@ -251,6 +252,14 @@ if sys.version_info >= (3, 7):
|
|||||||
if sys.version_info > (3, 7):
|
if sys.version_info > (3, 7):
|
||||||
standard_library.remove('macpath')
|
standard_library.remove('macpath')
|
||||||
|
|
||||||
|
# 'dummy_threading' module has been removed from Python 3.9
|
||||||
|
if sys.version_info > (3, 8):
|
||||||
|
standard_library.remove('dummy_threading')
|
||||||
|
|
||||||
|
# 'symbol' module has been removed from Python 3.10
|
||||||
|
if sys.version_info >= (3, 10):
|
||||||
|
standard_library.remove('symbol')
|
||||||
|
|
||||||
# Remove tkinter and Easter eggs
|
# Remove tkinter and Easter eggs
|
||||||
excluded_modules = [
|
excluded_modules = [
|
||||||
'antigravity',
|
'antigravity',
|
||||||
|
|||||||
19
tests/sources/python-sqlite3.py
Normal file
19
tests/sources/python-sqlite3.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import sqlite3
|
||||||
|
from sqlite3 import Error
|
||||||
|
|
||||||
|
def create_connection(db_file):
|
||||||
|
""" create a database connection to a SQLite database """
|
||||||
|
conn = None
|
||||||
|
try:
|
||||||
|
print('Sqlite3 version: ', sqlite3.version)
|
||||||
|
conn = sqlite3.connect(db_file)
|
||||||
|
conn.enable_load_extension(True)
|
||||||
|
except Error as e:
|
||||||
|
print(e)
|
||||||
|
exit(1)
|
||||||
|
finally:
|
||||||
|
if conn:
|
||||||
|
conn.close()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
create_connection(r"pythonsqlite.db")
|
||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user