Skip to content

Commit

Permalink
Test pushing
Browse files Browse the repository at this point in the history
  • Loading branch information
ianayl committed Sep 12, 2024
1 parent 8a5ecb6 commit 606c02a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,22 @@ jobs:
run: |
export CMPLR_ROOT=$PWD/toolchain
./devops/scripts/benchmarking/benchmark.sh
- name: Push compute-benchmarks
if: inputs.tests_selector == 'benchmark' && success()
env:
SSH_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
run: |
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
eval "$(ssh-agent -s)"
ssh-add -k ~/.ssh/id_rsa
cd llvm-ci-perf-results
git config --global user.name "iclsrc"
git config --global user.email "ia.compiler.tools.git@intel.com"
git add .
git commit -m "Update results"
git push
# - name: Upload sycl-bench microbenchmark results
# if: inputs.tests_selector == 'benchmark' && steps.run_benchmarks.outcome == 'success'
# uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion devops/scripts/benchmarking/benchmark-ci.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git branch settings for llvm-ci-perf-results
PERF_RES_GIT_REPO="https://github.com/intel-sandbox/llvm-ci-perf-results"
PERF_RES_GIT_REPO="https://github.com/ianayl/llvm-ci-perf-results"
PERF_RES_BRANCH="test-compute-bench"
# Path where llvm-ci-perf-results are cloned
PERF_RES_PATH="./llvm-ci-perf-res"
Expand Down

0 comments on commit 606c02a

Please sign in to comment.