Skip to content

Commit 2297843

Browse files
artifact
1 parent 9237b42 commit 2297843

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/api_changes_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
echo '{"pr_number": "${{ github.event.pull_request.number }}", "action": "none"}' > api_status.json
5959
6060
- name: Upload artifact
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
6262
with:
6363
name: api_status
6464
path: api_status.json

.github/workflows/conformance_weight_compression.yml

+10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
pytest_args:
1212
description: 'Pytest arguments'
1313
default: ''
14+
pull_request: # TODO: remove
1415

1516
jobs:
1617
examples-cpu:
@@ -57,6 +58,15 @@ jobs:
5758
env:
5859
TQDM_DISABLE: 1
5960
HOME_HF: "/home/runner/hf_home"
61+
- name: Print report
62+
if: ${{ !cancelled() }}
63+
run: column -s, -t < tmp/results.csv || echo "no file"
64+
- name: Upload artifact
65+
if: ${{ !cancelled() }}
66+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
67+
with:
68+
name: wc_results_${{ matrix.group }}
69+
path: tmp/results.csv
6070
- name: Test Summary
6171
if: ${{ !cancelled() }}
6272
run: |

0 commit comments

Comments
 (0)