-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,12 @@ jobs: | |
- name: Run asv | ||
uses: actions/checkout@v3 | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github action" | ||
git config pull.rebase false | ||
# merge in gh-pages to get old results before generating new | ||
git fetch | ||
git merge origin/gh-pages --strategy-option ours --allow-unrelated-histories | ||
python -m pip install --upgrade pip | ||
pip install -r requirements_dev.txt | ||
pip install . | ||
|
@@ -32,14 +38,11 @@ jobs: | |
|
||
- name: Save benchmarks results | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github action" | ||
git config pull.rebase false | ||
#git checkout --orphan benchmarks | ||
git fetch | ||
#git fetch | ||
# merge in gh-pages to get old results before generating new | ||
git merge origin/gh-pages --strategy-option ours --allow-unrelated-histories | ||
#git merge origin/gh-pages --strategy-option ours --allow-unrelated-histories | ||
mkdir -p docs/asv | ||
cp -R .asv/html/* docs/asv/ | ||
|