Skip to content

Commit 28a1bba

Browse files
committed
Updated CI to build 3.8.17
1 parent 1d743c6 commit 28a1bba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ stages:
1818
- if (Test-Path build-out) { remove-item -recurse -force build-out }
1919
- docker run --rm -v "$(Get-Location):c:\mnt" -e CI_JOB_ID=${CI_JOB_ID} -e WINDOWS_BUILDER=true -e AWS_NETWORKING=true -e TARGET_ARCH="$ARCH" datadog/agent-buildimages-windows_x64:1809 C:\mnt\build.bat
2020
- get-childitem build-out
21-
- Get-FileHash -Algorithm SHA256 build-out/python-windows-3.8.16-${ARCH}.zip
21+
- Get-FileHash -Algorithm SHA256 build-out/python-windows-3.8.17-${ARCH}.zip
2222
artifacts:
2323
expire_in: 2 weeks
2424
paths:
25-
- build-out/python-windows-3.8.16-${ARCH}.zip
25+
- build-out/python-windows-3.8.17-${ARCH}.zip
2626

2727
build_binaries_x64:
2828
extends: .build_common
@@ -42,8 +42,8 @@ deploy_x64:
4242
!reference [.manual]
4343
script:
4444
- $hash = (git rev-parse --short HEAD 2> $null)
45-
- Write-Host "Uploading zip python-windows-3.8.16-${hash}-x64.zip"
46-
- Invoke-Expression "aws s3 cp --only-show-errors --region us-east-1 --sse AES256 --acl public-read build-out/python-windows-3.8.16-x64.zip s3://dd-agent-omnibus/python-windows-3.8.16-${hash}-x64.zip"
45+
- Write-Host "Uploading zip python-windows-3.8.17-${hash}-x64.zip"
46+
- Invoke-Expression "aws s3 cp --only-show-errors --region us-east-1 --sse AES256 --acl public-read build-out/python-windows-3.8.17-x64.zip s3://dd-agent-omnibus/python-windows-3.8.17-${hash}-x64.zip"
4747

4848
deploy_x86:
4949
stage: deploy
@@ -53,5 +53,5 @@ deploy_x86:
5353
!reference [.manual]
5454
script:
5555
- $hash = (git rev-parse --short HEAD 2> $null)
56-
- Write-Host "Uploading zip python-windows-3.8.16-${hash}-x86.zip"
57-
- Invoke-Expression "aws s3 cp --only-show-errors --region us-east-1 --sse AES256 --acl public-read build-out/python-windows-3.8.16-x86.zip s3://dd-agent-omnibus/python-windows-3.8.16-${hash}-x86.zip"
56+
- Write-Host "Uploading zip python-windows-3.8.17-${hash}-x86.zip"
57+
- Invoke-Expression "aws s3 cp --only-show-errors --region us-east-1 --sse AES256 --acl public-read build-out/python-windows-3.8.17-x86.zip s3://dd-agent-omnibus/python-windows-3.8.17-${hash}-x86.zip"

Include/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.8.17+"
26+
#define PY_VERSION "3.8.17"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd C:\mnt
55
set platf=Win32
66
set builddir=c:\mnt\PCBuild
77
set outdir=c:\mnt\build-out
8-
set py_version=3.8.16
8+
set py_version=3.8.17
99

1010
mkdir %outdir%
1111
if not exist %outdir% exit /b 3

0 commit comments

Comments
 (0)