File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
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
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 :
You can’t perform that action at this time.
0 commit comments