This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit 4dc44c7ea2cd19efa9b62fcd3d5b030db269c151
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Tue Oct 24 13:03:36 2023 +0200

    MINIFICPP-1712 Wait for SQL ODBC driver install to finish in CI
    
    Closes #1689
    
    Signed-off-by: Marton Szasz <[email protected]>
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 554827371..24b56cd90 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -101,7 +101,7 @@ jobs:
         run: |
           Invoke-WebRequest -Uri 
"http://www.ch-werner.de/sqliteodbc/sqliteodbc_w64.exe"; -OutFile 
"sqliteodbc_w64.exe"
           if ((Get-FileHash 'sqliteodbc_w64.exe').Hash -ne 
"0df79be4a4412542839ebf405b20d95a7dfc803da0b0b6b0dc653d30dc82ee84") {Write 
"Hash mismatch"; Exit 1}
-          ./sqliteodbc_w64.exe /S
+          Start-Process -FilePath ".\sqliteodbc_w64.exe" -ArgumentList "/S" 
-Wait
         shell: powershell
       - id: remove-strawberry-perl-tool-executables
         run: |

Reply via email to