Skip to content

Commit

Permalink
Update Win Sanity Check Script (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 authored Oct 21, 2024
1 parent 5c4d1ad commit 59d7e69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion codebuild/cd/manylinux-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ phases:
commands:
- export CC=gcc
- cd aws-crt-python
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
- /opt/python/cp38-cp38m/bin/python ./continuous-delivery/update-version.py
build:
commands:
- echo Build started on `date`
Expand Down
2 changes: 1 addition & 1 deletion codebuild/cd/manylinux-x86-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ phases:
commands:
- export CC=gcc
- cd aws-crt-python
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
- /opt/python/cp38-cp38m/bin/python ./continuous-delivery/update-version.py
build:
commands:
- echo Build started on `date`
Expand Down
4 changes: 2 additions & 2 deletions continuous-delivery/sanity-check-test-pypi.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FOR /F "delims=" %%A in ('git describe --tags') do ( set TAG_VERSION=%%A )
set CURRENT_VERSION=%TAG_VERSION:v=%

"C:\Program Files\Python37\python.exe" continuous-delivery\pip-install-with-retry.py --no-cache-dir -i https://testpypi.python.org/simple --user awscrt==%CURRENT_VERSION% || goto error
"C:\Program Files\Python37\python.exe" continuous-delivery\test-pip-install.py || goto error
"C:\Program Files\Python38\python.exe" continuous-delivery\pip-install-with-retry.py --no-cache-dir -i https://testpypi.python.org/simple --user awscrt==%CURRENT_VERSION% || goto error
"C:\Program Files\Python38\python.exe" continuous-delivery\test-pip-install.py || goto error

goto :EOF

Expand Down

0 comments on commit 59d7e69

Please sign in to comment.