-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the compile fix for cargo next
- Loading branch information
Showing
1 changed file
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,15 +19,7 @@ jobs: | |
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
# For some reason, the windows toolchain does not always have the | ||
# std-*.dll in its path, so sometimes there are failures like: | ||
# > for `datadog-ipc-macros`, command | ||
# > `'D:\a\libdatadog\libdatadog\target\debug\deps\datadog_ipc_macros-24212d08e4e0faca.exe' --list --format terse` | ||
# > exited with code 0xc0000135: The specified module could not be found. (os error 126) | ||
- name: Add toolchain bin folder to PATH | ||
if: matrix.platform == 'windows-latest' | ||
run: | | ||
echo "$(Join-Path -Path (rustc --print sysroot) -ChildPath bin)" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
|
||
- name: Cache | ||
uses: ./.github/actions/cache | ||
with: | ||
|
@@ -41,7 +33,7 @@ jobs: | |
- name: Install cargo nextest | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected].68 | ||
tool: [email protected].72 | ||
- name: "Remove nextest CI report" | ||
shell: bash | ||
run: rm -rf target/nextest/ci/junit.xml | ||
|