Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
69a7d0ec
Commit
69a7d0ec
authored
Dec 31, 2007
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix paths for build bot
parent
9a10da32
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
16 deletions
+16
-16
PC/VS7.1/build_ssl.py
PC/VS7.1/build_ssl.py
+1
-1
PC/VS7.1/rt.bat
PC/VS7.1/rt.bat
+4
-4
Tools/buildbot/build-amd64.bat
Tools/buildbot/build-amd64.bat
+1
-1
Tools/buildbot/build.bat
Tools/buildbot/build.bat
+1
-1
Tools/buildbot/buildmsi.bat
Tools/buildbot/buildmsi.bat
+1
-1
Tools/buildbot/clean-amd64.bat
Tools/buildbot/clean-amd64.bat
+1
-1
Tools/buildbot/clean.bat
Tools/buildbot/clean.bat
+1
-1
Tools/buildbot/kill_python.c
Tools/buildbot/kill_python.c
+4
-4
Tools/buildbot/test-amd64.bat
Tools/buildbot/test-amd64.bat
+1
-1
Tools/buildbot/test.bat
Tools/buildbot/test.bat
+1
-1
No files found.
PC/VS7.1/build_ssl.py
View file @
69a7d0ec
...
...
@@ -131,7 +131,7 @@ def main():
print
"Found a working perl at '%s'"
%
(
perl
,)
sys
.
stdout
.
flush
()
# Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live.
ssl_dir
=
find_best_ssl_dir
((
"..
\
\
.."
,))
ssl_dir
=
find_best_ssl_dir
((
"..
\
\
..
\
\
..
"
,))
if
ssl_dir
is
None
:
sys
.
exit
(
1
)
...
...
PC/VS7.1/rt.bat
View file @
69a7d0ec
...
...
@@ -10,11 +10,11 @@ rem All leading instances of these switches are shifted off, and
rem whatever remains is passed to regrtest.py. For example,
rem rt -O -d -x test_thread
rem runs
rem python_d -O ../lib/test/regrtest.py -x test_thread
rem python_d -O ../
../
lib/test/regrtest.py -x test_thread
rem twice, and
rem rt -q -g test_binascii
rem runs
rem python_d ../lib/test/regrtest.py -g test_binascii
rem python_d ../
../
lib/test/regrtest.py -g test_binascii
rem to generate the expected-output file for binascii quickly.
rem
rem Confusing: if you want to pass a comma-separated list, like
...
...
@@ -27,14 +27,14 @@ setlocal
set
exe
=
python
set
qmode
=
set
dashO
=
PATH
%PATH%
;
..\..\tcltk\bin
PATH
%PATH%
;
..\..\
..\
tcltk\bin
:CheckOpts
if
"
%
1"
==
"-O"
(
set
dashO
=
-O
)
&
shift
&
goto
CheckOpts
if
"
%
1"
==
"-q"
(
set
qmode
=
yes
)
&
shift
&
goto
CheckOpts
if
"
%
1"
==
"-d"
(
set
exe
=
python_d
)
&
shift
&
goto
CheckOpts
set
cmd
=
%exe%
%dashO%
-E -tt
../lib/test/regrtest.py
%
1
%
2
%
3
%
4
%
5
%
6
%
7
%
8
%
9
set
cmd
=
%exe%
%dashO%
-E -tt
../
../
lib/test/regrtest.py
%
1
%
2
%
3
%
4
%
5
%
6
%
7
%
8
%
9
if
defined
qmode
goto
Qmode
echo
Deleting
.pyc/.pyo
files
...
...
...
Tools/buildbot/build-amd64.bat
View file @
69a7d0ec
...
...
@@ -3,4 +3,4 @@ setlocal
cmd
/c
Tools
\buildbot\external
-amd
64
.bat
call
"
%VS7
1COMNTOOLS
%vsvars3
2.bat"
REM cmd /q/c Tools\buildbot\kill_python.bat
devenv
.com
/build
ReleaseAMD64
PC
build
\pcbuild.sln
devenv
.com
/build
ReleaseAMD64
PC
\VS7.1
\pcbuild.sln
Tools/buildbot/build.bat
View file @
69a7d0ec
...
...
@@ -2,4 +2,4 @@
cmd
/c
Tools
\buildbot\external.bat
call
"
%VS7
1COMNTOOLS
%vsvars3
2.bat"
cmd
/q/c
Tools
\buildbot\kill_python.bat
devenv
.com
/useenv /build
Debug
PC
build
\pcbuild.sln
devenv
.com
/useenv /build
Debug
PC
\VS7.1
\pcbuild.sln
Tools/buildbot/buildmsi.bat
View file @
69a7d0ec
...
...
@@ -9,7 +9,7 @@ if not exist ..\db-4.4.20\build_win32\release\libdb44s.lib (
@rem
build
Python
cmd
/q/c
Tools
\buildbot\kill_python.bat
devenv
.com
/useenv /build
Release
PC
build
\pcbuild.sln
devenv
.com
/useenv /build
Release
PC
\VS7.1
\pcbuild.sln
@rem
build
the
documentation
bash
.exe
-c
'cd Doc;make PYTHON=python2.5 update htmlhelp'
...
...
Tools/buildbot/clean-amd64.bat
View file @
69a7d0ec
@rem
Used
by
the
buildbot
"clean"
step
.
call
"
%VS7
1COMNTOOLS
%vsvars3
2.bat"
cd
PC
build
cd
PC
\VS7.1
@echo
Deleting
.pyc/.pyo
files
...
python
.exe
rmpyc
.py
devenv
.com
/clean
ReleaseAMD64
pcbuild
.sln
Tools/buildbot/clean.bat
View file @
69a7d0ec
@rem
Used
by
the
buildbot
"clean"
step
.
call
"
%VS7
1COMNTOOLS
%vsvars3
2.bat"
cd
PC
build
cd
PC
\VS7.1
@echo
Deleting
.pyc/.pyo
files
...
python_d
.exe
rmpyc
.py
devenv
.com
/clean
Release
pcbuild
.sln
...
...
Tools/buildbot/kill_python.c
View file @
69a7d0ec
/* This program looks for processes which have build\PC
build
\python.exe
/* This program looks for processes which have build\PC
\VS7.1
\python.exe
in their path and terminates them. */
#include <windows.h>
#include <psapi.h>
...
...
@@ -46,14 +46,14 @@ int main()
/* Check if we are running a buildbot version of Python.
On Windows, this will always be a debug build from the
PC
build directory. build\\PCbuild
\\python_d.exe
PC
\VS7.1 directory. build\\PC\\VS7.1
\\python_d.exe
On Cygwin, the pathname is similar to other Unixes.
Use \\build\\python.exe to ensure we don't match
PC
build
\\python.exe which could be a normal instance
PC
\\VS7.1
\\python.exe which could be a normal instance
of Python running on vanilla Windows.
*/
if
((
strstr
(
path
,
"build
\\
pc
build
\\
python_d.exe"
)
!=
NULL
)
||
if
((
strstr
(
path
,
"build
\\
pc
\\
vs7.1
\\
python_d.exe"
)
!=
NULL
)
||
(
strstr
(
path
,
"
\\
build
\\
python.exe"
)
!=
NULL
))
{
printf
(
"Terminating %s (pid %d)
\n
"
,
path
,
pids
[
i
]);
if
(
!
TerminateProcess
(
hProcess
,
1
))
{
...
...
Tools/buildbot/test-amd64.bat
View file @
69a7d0ec
@rem
Used
by
the
buildbot
"test"
step
.
cd
PC
build
cd
PC
\VS7.1
call
rt
.bat
-q -uall -rw
Tools/buildbot/test.bat
View file @
69a7d0ec
@rem
Used
by
the
buildbot
"test"
step
.
cd
PC
build
cd
PC
\VS7.1
call
rt
.bat
-d -q -uall -rw
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment