mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-26 19:02:13 +00:00
Add a run of git remote -v
so we learn what "checkout: self" really does. Add echo lines between each command to confirm which command is failing.
This commit is contained in:
parent
ca44d4f9f0
commit
1c37244279
@ -244,17 +244,31 @@ jobs:
|
|||||||
artifactName: rustdocs
|
artifactName: rustdocs
|
||||||
targetPath: $(Pipeline.Workspace)/rustdocs
|
targetPath: $(Pipeline.Workspace)/rustdocs
|
||||||
- bash: |
|
- bash: |
|
||||||
|
echo a
|
||||||
|
git remote -v
|
||||||
|
echo b
|
||||||
git checkout --orphan test-branch/fake-gh-pages
|
git checkout --orphan test-branch/fake-gh-pages
|
||||||
|
echo c
|
||||||
git rm -rf .
|
git rm -rf .
|
||||||
|
echo d
|
||||||
mkdir rustdoc/
|
mkdir rustdoc/
|
||||||
|
echo e
|
||||||
cp -r $(Pipeline.Workspace)/rustdocs/* rustdoc/
|
cp -r $(Pipeline.Workspace)/rustdocs/* rustdoc/
|
||||||
|
echo f
|
||||||
echo '<meta http-equiv="refresh" content="1; url=rustdoc/wasmer_runtime/index.html">' > index.html
|
echo '<meta http-equiv="refresh" content="1; url=rustdoc/wasmer_runtime/index.html">' > index.html
|
||||||
|
echo g
|
||||||
echo '<meta http-equiv="refresh" content="1; url=wasmer_runtime/index.html">' > rustdoc/index.html
|
echo '<meta http-equiv="refresh" content="1; url=wasmer_runtime/index.html">' > rustdoc/index.html
|
||||||
|
echo h
|
||||||
git config --local user.name "Azure Pipelines"
|
git config --local user.name "Azure Pipelines"
|
||||||
|
echo i
|
||||||
git config --local user.email "azuredevops@microsoft.com"
|
git config --local user.email "azuredevops@microsoft.com"
|
||||||
|
echo j
|
||||||
git add .
|
git add .
|
||||||
|
echo k
|
||||||
git commit -m "Publishing GitHub Pages ***NO_CI***"
|
git commit -m "Publishing GitHub Pages ***NO_CI***"
|
||||||
|
echo l
|
||||||
git push --set-upstream origin test-branch/fake-gh-pages --force
|
git push --set-upstream origin test-branch/fake-gh-pages --force
|
||||||
|
echo m
|
||||||
|
|
||||||
# We only run the pipelines on PRs to Master
|
# We only run the pipelines on PRs to Master
|
||||||
pr:
|
pr:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user