Skip to content

Commit

Permalink
chore(ci): Fix nextest / rustup dll issue (vectordotdev#20544)
Browse files Browse the repository at this point in the history
Workaround for issue in nextest caused by a change in rustup:
nextest-rs/nextest#1493

Fixes:

```
error: creating test list failed

Caused by:
  for `vector-config-macros`, command
  `'C:\a\vector\vector\target\debug\deps\vector_config_macros-4fc11cf764d99dff.exe' --list --format
  terse` exited with code 0xc0000135: The specified module could not be found. (os error 126)
```

Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko authored and paomian committed Jun 12, 2024
1 parent b75b1ae commit 337a05e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/environment/bootstrap-windows-2019.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ echo "OPENSSL_SRC_PERL=C:\Strawberry\perl\bin\perl.exe" | Out-File -FilePath $en

# Force the proto-build crate to avoid building the vendored protoc.
echo "PROTO_NO_VENDOR=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

# Workaround for https://github.com/nextest-rs/nextest/issues/1493
echo "RUSTUP_WINDOWS_PATH_ADD_BIN=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

0 comments on commit 337a05e

Please sign in to comment.