We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80209dd commit 22cdb58Copy full SHA for 22cdb58
.github/workflows/test.yml
@@ -33,6 +33,10 @@ jobs:
33
if: matrix.os == 'windows-latest'
34
run: "gci env:"
35
36
+ - name: Enable long paths for git
37
+ if: matrix.os == 'windows-latest'
38
+ run: git config --system core.longpaths true # allow long paths from git deps
39
+
40
- name: Rustfmt
41
run: cargo fmt -- --check
42
- name: Clippy
.github/workflows/upload-binaries.yml
@@ -89,6 +89,7 @@ jobs:
89
90
- name: Build
91
run: |
92
+ git config --system core.longpaths true # allow long paths from git deps
93
rustup target add ${{ matrix.target }}
94
$env:RUSTFLAGS="-C target-feature=+crt-static" # crt-static is set with RUSTFLAGS to statically link MSVCRT (VCRUNTIME140.dll)
95
cargo build -p tmc-langs-cli --release --target ${{ matrix.target }}
0 commit comments