Skip to content

Commit 14f1f9b

Browse files
author
devizer
committed
Actions on VM: 2nd trim precision benchmark log, All the find for full set of VMs, Jit for precision benchmark
1 parent 9027dbe commit 14f1f9b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/CpuUsage-Tests-Matrix.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,11 @@ jobs:
104104
- name: PREPARE Artifact
105105
run: |
106106
sudo chown -R $(whoami) $HOME/Artifacts
107-
cat $HOME/Artifacts/PRECISION.LOG | sed '0,/Show_Precision_Histogram/d' > /tmp/1
107+
cp $HOME/Artifacts/PRECISION.LOG /tmp/0
108+
# sed '0,/Show_Precision_Histogram/d' - it exclides matching line
109+
cat /tmp/0 | sed -n '/Show_Precision_Histogram/,$p' > /tmp/1
108110
tac /tmp/1 > /tmp/2
109-
cat /tmp/2 | sed '0,/Show_Precision_Histogram/d' > /tmp/3
111+
cat /tmp/2 | sed -n '/Show_Precision_Histogram/,$p' > /tmp/3
110112
tac /tmp/3 > $HOME/Artifacts/PRECISION.LOG
111113
112114
mkdir -p "${{ github.workspace }}/Artifact"

0 commit comments

Comments
 (0)