File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ jobs:
927
927
steps :
928
928
- uses : actions/checkout@v2
929
929
with :
930
- # Fetch everything to allow to rebase with rustc-dep-of-std.
930
+ # Fetch everything to get rebase with rustc-dep-of-std.
931
931
fetch-depth : 0
932
932
- uses : ./.github/actions/install-rust
933
933
with :
@@ -940,6 +940,9 @@ jobs:
940
940
submodules : true
941
941
# Fetch at least 200 to let the bootstrap script find an LLVM revision.
942
942
fetch-depth : 200
943
+ # Hack to get git rebase to work.
944
+ - run : git config --global user.email "you@example.com"
945
+ - run : git config --global user.name "Your Name"
943
946
# Include the changes needed to support std.
944
947
- run : git rebase origin/rustc-dep-of-std
945
948
# Download a pre-built LLVM instead of building it from source.
You can’t perform that action at this time.
0 commit comments