summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2021-06-15 18:57:22 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2021-06-15 18:57:22 +0100
commit9ac54b3615e233ca37083df6712a01ae8bef8570 (patch)
treeba70fd3cd12c4c1184c3e4798a531fb636148cbd
parentf5d6366287798934b5def4bc8b02a25054b36486 (diff)
downloadpsycopg2-9ac54b3615e233ca37083df6712a01ae8bef8570.tar.gz
Move appveyor build support to the scripts/build dir
-rw-r--r--.appveyor/packages.yml12
-rw-r--r--.appveyor/tests.yml12
-rw-r--r--scripts/build/appveyor.cache_rebuild (renamed from scripts/appveyor.cache_rebuild)0
-rwxr-xr-xscripts/build/appveyor.py (renamed from scripts/appveyor.py)0
4 files changed, 12 insertions, 12 deletions
diff --git a/.appveyor/packages.yml b/.appveyor/packages.yml
index 2f8c665..db6ccd5 100644
--- a/.appveyor/packages.yml
+++ b/.appveyor/packages.yml
@@ -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
diff --git a/.appveyor/tests.yml b/.appveyor/tests.yml
index 5a0f8f9..2ca4363 100644
--- a/.appveyor/tests.yml
+++ b/.appveyor/tests.yml
@@ -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:
diff --git a/scripts/appveyor.cache_rebuild b/scripts/build/appveyor.cache_rebuild
index d4d2ed2..d4d2ed2 100644
--- a/scripts/appveyor.cache_rebuild
+++ b/scripts/build/appveyor.cache_rebuild
diff --git a/scripts/appveyor.py b/scripts/build/appveyor.py
index 39b3ebe..39b3ebe 100755
--- a/scripts/appveyor.py
+++ b/scripts/build/appveyor.py