We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 807f1c7 commit c30b99dCopy full SHA for c30b99d
1 file changed
.github/workflows/run_x86.yml
@@ -68,7 +68,7 @@ jobs:
68
69
cp -r $RESULTS_DIR/$MACHINE_NAME/* .asv/results/$MACHINE_NAME/
70
else
71
- echo "results/ directory does not exist in the benchmarks repository"
+ echo "results/ directory does not exist, creating"
72
mkdir -p $RESULTS_DIR
73
fi
74
@@ -86,4 +86,15 @@ jobs:
86
echo ">>> @ " $RESULTS_DIR_ROOT
87
ls -l ~/$RESULTS_DIR_ROOT
88
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
100
0 commit comments