File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -889,7 +889,7 @@ jobs:
889
889
# then this line is no longer needed.
890
890
- uses : actions-rs/toolchain@v1
891
891
with :
892
- toolchain : ${{ env. INSTALLED_NIGHTLY_VERSION }}
892
+ toolchain : $INSTALLED_NIGHTLY_VERSION
893
893
override : true
894
894
895
895
- name : Run the example with dhat-rs to collect memory information
Original file line number Diff line number Diff line change 3
3
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
4
5
5
# AUTO-GENERATED in ffi.toml
6
-
7
6
[source.crates-io]
8
7
replace-with = "vendored-sources"
9
8
Original file line number Diff line number Diff line change @@ -60,11 +60,13 @@ cd ffi/gn
60
60
61
61
rm -rf vendor
62
62
output = exec --fail-on-error cargo vendor
63
+ output_trimmed = trim_start ${output.stdout} # Needed since there are whitespace differences between cargo versions
64
+ # Probably can be removed when we update our CI stable
63
65
writefile .cargo/config "# This file is part of ICU4X. For terms of use, please see the file\n"
64
66
appendfile .cargo/config "# called LICENSE at the top level of the ICU4X source tree\n"
65
67
appendfile .cargo/config "# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).\n\n"
66
68
appendfile .cargo/config "# AUTO-GENERATED in ffi.toml\n"
67
- appendfile .cargo/config ${output.stdout }
69
+ appendfile .cargo/config ${output_trimmed }
68
70
'''
69
71
70
72
[tasks .gn-gen ]
You can’t perform that action at this time.
0 commit comments