Commit f25b8fb 1 parent 5fa0ec0 commit f25b8fb Copy full SHA for f25b8fb
File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -101,14 +101,18 @@ jobs:
101
101
echo "$SHA256SUM perl-installer.msi" | sha256sum --check --status
102
102
- run :
103
103
name : Install Perl
104
- shell : cmd.exe
105
- command : |
106
- msiexec /quiet /i perl-installer.msi
104
+ shell : cmd.exe # installation times out with bash shell
105
+ msiexec /queit /i perl-installer.msi
107
106
del perl-installer.msi
108
107
- run :
109
108
name : Build and test
110
- shell : cmd.exe
111
- command : scripts\test-msvc.bat
109
+ shell : bash
110
+ command : |
111
+ RUSTFLAGS=-Ctarget-feature=+crt-static
112
+ PATH="$HOME/.cargo/bin:/c/Strawberry/perl/bin:$PATH"
113
+ FEATURES="leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build"
114
+ rm rust-toolchain
115
+ cargo test --no-default-features --features "$FEATURES"
112
116
# - run:
113
117
# name: Build and test
114
118
# shell: bash
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments