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:
927927 steps :
928928 - uses : actions/checkout@v2
929929 with :
930- # Fetch everything to allow to rebase with rustc-dep-of-std.
930+ # Fetch everything to get rebase with rustc-dep-of-std.
931931 fetch-depth : 0
932932 - uses : ./.github/actions/install-rust
933933 with :
@@ -940,6 +940,9 @@ jobs:
940940 submodules : true
941941 # Fetch at least 200 to let the bootstrap script find an LLVM revision.
942942 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"
943946 # Include the changes needed to support std.
944947 - run : git rebase origin/rustc-dep-of-std
945948 # Download a pre-built LLVM instead of building it from source.
You can’t perform that action at this time.
0 commit comments