Skip to content

Commit 46af08f

Browse files
committed
Install FDB synchronously
We were seeing CI failures where the FDB installation would not be completed before we tried to invoke `fdbcli --version`
1 parent 651631d commit 46af08f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
run: |
100100
Set-PSDebug -Trace 1
101101
Invoke-WebRequest -Uri https://github.com/apple/foundationdb/releases/download/$env:FDB_VERSION/foundationdb-$env:FDB_VERSION-x64.msi -OutFile foundationdb-$env:FDB_VERSION-x64.msi
102-
msiexec /i foundationdb-$env:FDB_VERSION-x64.msi /passive
103-
echo "c:/Program Files/foundationdb/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
102+
Start-Process -Wait -FilePath msiexec -ArgumentList /i, foundationdb-$env:FDB_VERSION-x64.msi, /passive
103+
echo "C:\Program Files\foundationdb\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
104104
- name: Install FoundationDB (macOS)
105105
if: ${{ matrix.os == 'macos-latest' }}
106106
run: |

0 commit comments

Comments
 (0)