-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload uncached results to artifactory
- Loading branch information
Showing
1 changed file
with
7 additions
and
3 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 |
---|---|---|
|
@@ -511,8 +511,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.LLVM_SYCL_BENCHMARK_TOKEN }} | ||
run: | | ||
# TODO -- waiting on security clearance | ||
find ./ | ||
# Load configuration values | ||
. "./devops/scripts/benchmarking/utils.sh" | ||
CONFIG_FILE="./devops/scripts/benchmarking/benchmark-ci.conf" | ||
|
@@ -525,4 +523,10 @@ jobs: | |
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "[GHA] Upload compute-benchmarks results from ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
git push "https://[email protected]/$PERF_RES_GIT_REPO.git" "$PERF_RES_BRANCH" | ||
git push "https://[email protected]/$PERF_RES_GIT_REPO.git" "$PERF_RES_BRANCH" | ||
- name: Archive uncached compute-benchmark results | ||
if: inputs.tests_selector == 'benchmark' && always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Uncached compute-benchmark results (${{runner.name}}) | ||
path: ./uncached_res |