From e302c99d4a5470cb4ba2d2bb837e684f7fafc634 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 9 Dec 2022 00:52:34 -0800 Subject: [PATCH] Extract tar --- .github/workflows/build.yml | 3 ++- Makefile.win | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e7c1e5..c03ec8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,8 +58,9 @@ jobs: nmake /NOLOGO /F Makefile.win installcheck curl -Ls -o REL_14_5.tar.gz https://github.com/postgres/postgres/archive/refs/tags/REL_14_5.tar.gz 7z x REL_14_5.tar.gz + 7z x REL_14_5.tar ls -R . set PROVE=prove - set PROVE_FLAGS="-I ./postgres-REL_14_5/src/test/perl" + set PROVE_FLAGS="-I .\postgres-REL_14_5\src\test\perl" nmake /NOLOGO /F Makefile.win prove_installcheck shell: cmd diff --git a/Makefile.win b/Makefile.win index 42b0cb7..c229e04 100644 --- a/Makefile.win +++ b/Makefile.win @@ -59,4 +59,4 @@ prove_installcheck: rm -rf tmp_check set PGPORT=65432 set PG_REGRESS="$(BINDIR)\pg_regress" - $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) test/t/*.pl + $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) test\t\*.pl