Skip to content

Commit bda4b8c

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

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18+
host: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
1819
include:
1920
- os: 'x64-debian-10'
2021
- os: 'x64-debian-11'
@@ -51,7 +52,7 @@ jobs:
5152
- os: 'i386-debian-11'
5253
- os: 'i386-debian-12'
5354

54-
runs-on: ubuntu-20.04
55+
runs-on: ${{ matrix.host }}
5556
timeout-minutes: 15
5657
steps:
5758
- name: Checkout
@@ -91,7 +92,7 @@ jobs:
9192
set -ue; set -o pipefail
9293
cat << 'EOF' > "$HOME/Artifacts/lets-rock.sh"
9394
Say "STARTING TESTS";
94-
free -m;
95+
free -m;
9596
nunit3-console --inprocess --workers=1 Universe.CpuUsage.Tests.dll | tee /job/PRECISION.LOG;
9697
Say "TESTS COMPLETED"
9798
EOF
@@ -112,14 +113,14 @@ jobs:
112113
tac /tmp/3 > $HOME/Artifacts/PRECISION.LOG
113114
114115
mkdir -p "${{ github.workspace }}/Artifact"
115-
cp -f $HOME/Artifacts/PRECISION.LOG "${{ github.workspace }}/Artifact/PRECISION on ${{ matrix.os }}.LOG"
116+
cp -f $HOME/Artifacts/PRECISION.LOG "${{ github.workspace }}/Artifact/PRECISION on ${{ matrix.os }} at ${{ matrix.host }}.LOG"
116117
cat $HOME/Artifacts/PRECISION.LOG
117118
118119
- name: Upload artifacts
119120
uses: actions/upload-artifact@v4
120121
if: always()
121122
with:
122-
name: 'Precision ${{ matrix.os }}'
123+
name: 'Precision ${{ matrix.os }} at ${{ matrix.host }}'
123124
path: '${{ github.workspace }}/Artifact'
124125

125126
TestCpuUsageonHost:

0 commit comments

Comments
 (0)