Move appveyor build support to the scripts/build dir

This commit is contained in:
Daniele Varrazzo 2021-06-15 18:57:22 +01:00
parent f5d6366287
commit 9ac54b3615
4 changed files with 12 additions and 12 deletions

View File

@ -52,7 +52,7 @@ services:
cache:
# Rebuild cache if following file changes
# (See the file to zap the cache manually)
- C:\Others -> scripts\appveyor.cache_rebuild
- C:\Others -> scripts\build\appveyor.cache_rebuild
# Script called before repo cloning
# init:
@ -60,23 +60,23 @@ cache:
# Repository gets cloned, Cache is restored
install:
- "%PYEXE% scripts\\appveyor.py install"
- "%PYEXE% scripts\\build\\appveyor.py install"
# PostgreSQL server starts now
build: off
build_script:
- "%PYEXE% scripts\\appveyor.py build_script"
- "%PYEXE% scripts\\build\\appveyor.py build_script"
after_build:
- "%PYEXE% scripts\\appveyor.py after_build"
- "%PYEXE% scripts\\build\\appveyor.py after_build"
before_test:
- "%PYEXE% scripts\\appveyor.py before_test"
- "%PYEXE% scripts\\build\\appveyor.py before_test"
test_script:
- "%PYEXE% scripts\\appveyor.py test_script"
- "%PYEXE% scripts\\build\\appveyor.py test_script"
artifacts:
- path: dist\psycopg2-*\*.whl

View File

@ -47,7 +47,7 @@ services:
cache:
# Rebuild cache if following file changes
# (See the file to zap the cache manually)
- C:\Others -> scripts\appveyor.cache_rebuild
- C:\Others -> scripts\build\appveyor.cache_rebuild
# Script called before repo cloning
# init:
@ -55,23 +55,23 @@ cache:
# Repository gets cloned, Cache is restored
install:
- "%PYEXE% scripts\\appveyor.py install"
- "%PYEXE% scripts\\build\\appveyor.py install"
# PostgreSQL server starts now
build: off
build_script:
- "%PYEXE% scripts\\appveyor.py build_script"
- "%PYEXE% scripts\\build\\appveyor.py build_script"
after_build:
- "%PYEXE% scripts\\appveyor.py after_build"
- "%PYEXE% scripts\\build\\appveyor.py after_build"
before_test:
- "%PYEXE% scripts\\appveyor.py before_test"
- "%PYEXE% scripts\\build\\appveyor.py before_test"
test_script:
- "%PYEXE% scripts\\appveyor.py test_script"
- "%PYEXE% scripts\\build\\appveyor.py test_script"
# vim: set ts=4 sts=4 sw=4: