[Groonga-commit] pgroonga/pgroonga at 4d8a583 [master] appveyor: try to use Start-Process to run PG in background

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Sep 22 01:35:55 JST 2016


Kouhei Sutou	2016-09-22 01:35:55 +0900 (Thu, 22 Sep 2016)

  New Revision: 4d8a583a73be6d77c78e7d6cc6cb2e47db7645bc
  https://github.com/pgroonga/pgroonga/commit/4d8a583a73be6d77c78e7d6cc6cb2e47db7645bc

  Message:
    appveyor: try to use Start-Process to run PG in background

  Modified files:
    appveyor.yml

  Modified: appveyor.yml (+2 -2)
===================================================================
--- appveyor.yml    2016-09-22 01:24:41 +0900 (d6bd629)
+++ appveyor.yml    2016-09-22 01:35:55 +0900 (36ba644)
@@ -32,7 +32,7 @@ before_test:
       --encoding=UTF-8
       --no-locale
       ..\pgsql\data
-  - ..\pgsql\bin\pg_ctl start -D ..\pgsql\data
+  - ps: $PGProcess = Start-Process ..\pgsql\bin\postgres -D ..\pgsql\data
 test_script:
   - mkdir results\array\varchar\single\match
   - ..\pgsql\bin\pg_regress
@@ -41,4 +41,4 @@ test_script:
       array/varchar/single/match/seqscan ||
     (type regression.diffs & nonexistent_command)
 after_test:
-  - ..\pgsql\bin\pg_ctl stop -D ..\pgsql\data
+  - ps: Stop-Process -Id $PGProcess.Id
-------------- next part --------------
HTML����������������������������...
下載 



More information about the Groonga-commit mailing list
Back to archive index