Skip to content

Commit c30b99d

Browse files
committed
push
1 parent 807f1c7 commit c30b99d

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/run_x86.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
cp -r $RESULTS_DIR/$MACHINE_NAME/* .asv/results/$MACHINE_NAME/
7070
else
71-
echo "results/ directory does not exist in the benchmarks repository"
71+
echo "results/ directory does not exist, creating"
7272
mkdir -p $RESULTS_DIR
7373
fi
7474
@@ -86,4 +86,15 @@ jobs:
8686
echo ">>> @ " $RESULTS_DIR_ROOT
8787
ls -l ~/$RESULTS_DIR_ROOT
8888
89+
- name: Push benchmarks
90+
run: |
91+
cd ~/$RESULTS_DIR_ROOT
92+
git add .
93+
git config --global user.email "project@openblas"
94+
git config --global user.name "OB benchmark bot"
95+
96+
python -c'import scipy_openblas32 as sc; print(sc.__version__, "\n\n", sc.get_openblas_config())' > msg.txt
97+
git commit -m "Update benchmarks `cat msg.txt` "
98+
# git push origin main
99+
git remote -v
89100

0 commit comments

Comments
 (0)