mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-14 04:56:33 +03:00
Use py
executable in appveyor
This commit is contained in:
parent
a59079a4f2
commit
26f0f13b39
|
@ -43,9 +43,6 @@ environment:
|
||||||
# Select according to the service enabled
|
# Select according to the service enabled
|
||||||
POSTGRES_DIR: C:\Program Files\PostgreSQL\9.6\
|
POSTGRES_DIR: C:\Program Files\PostgreSQL\9.6\
|
||||||
|
|
||||||
# The python used in the build process, not the one packages are built for
|
|
||||||
PYEXE: C:\Python36\python.exe
|
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: false
|
fast_finish: false
|
||||||
|
|
||||||
|
@ -64,23 +61,23 @@ cache:
|
||||||
# Repository gets cloned, Cache is restored
|
# Repository gets cloned, Cache is restored
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py install"
|
- "py scripts\\build\\appveyor.py install"
|
||||||
|
|
||||||
# PostgreSQL server starts now
|
# PostgreSQL server starts now
|
||||||
|
|
||||||
build: "off"
|
build: "off"
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py build_script"
|
- "py scripts\\build\\appveyor.py build_script"
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py after_build"
|
- "py scripts\\build\\appveyor.py after_build"
|
||||||
|
|
||||||
before_test:
|
before_test:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py before_test"
|
- "py scripts\\build\\appveyor.py before_test"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py test_script"
|
- "py scripts\\build\\appveyor.py test_script"
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: dist\psycopg2-*\*.whl
|
- path: dist\psycopg2-*\*.whl
|
||||||
|
|
|
@ -38,9 +38,6 @@ environment:
|
||||||
# Select according to the service enabled
|
# Select according to the service enabled
|
||||||
POSTGRES_DIR: C:\Program Files\PostgreSQL\9.6\
|
POSTGRES_DIR: C:\Program Files\PostgreSQL\9.6\
|
||||||
|
|
||||||
# The python used in the build process, not the one packages are built for
|
|
||||||
PYEXE: C:\Python36\python.exe
|
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: false
|
fast_finish: false
|
||||||
|
|
||||||
|
@ -59,23 +56,23 @@ cache:
|
||||||
# Repository gets cloned, Cache is restored
|
# Repository gets cloned, Cache is restored
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py install"
|
- py scripts\\build\\appveyor.py install"
|
||||||
|
|
||||||
# PostgreSQL server starts now
|
# PostgreSQL server starts now
|
||||||
|
|
||||||
build: "off"
|
build: "off"
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py build_script"
|
- py scripts\\build\\appveyor.py build_script"
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py after_build"
|
- py scripts\\build\\appveyor.py after_build"
|
||||||
|
|
||||||
before_test:
|
before_test:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py before_test"
|
- py scripts\\build\\appveyor.py before_test"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- "%PYEXE% scripts\\build\\appveyor.py test_script"
|
- py scripts\\build\\appveyor.py test_script"
|
||||||
|
|
||||||
|
|
||||||
# vim: set ts=4 sts=4 sw=4:
|
# vim: set ts=4 sts=4 sw=4:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user