File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ on: [pull_request]
44
55jobs :
66 clang-format :
7- runs-on : ubuntu-latest
7+ runs-on : ubuntu-22.04
88 steps :
99 - uses : actions/checkout@v2
1010 with :
1111 ref : ${{ github.event.pull_request.head.sha }}
1212
1313 - name : Install prerequisites
1414 run : |
15- sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-11 100
16- sudo update-alternatives --install /usr/bin/git-clang-format git-clang-format /usr/bin/git-clang-format-11 100
15+ sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-14 100
16+ sudo update-alternatives --install /usr/bin/git-clang-format git-clang-format /usr/bin/git-clang-format-14 100
1717
1818 - name : Run clang-format on changed files
1919 run : |
Original file line number Diff line number Diff line change @@ -18,6 +18,6 @@ This file describes the main feature changes for released versions of ReadoutCar
1818- superpage metadata: added link id.
1919- added verbosity protection for "Empty counter of Superpage FIFO" warnings
2020
21- ## v0.40.1 - 11/01/2022
21+ ## v0.40.1 - 11/01/2023
2222- Added support for CRORC firmware version v2.10.0 (0x221ff280)
2323- Minor compilation warnings fixed
Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ class ProgramDmaBench : public Program
437437 // Thread for pushing & checking arrivals
438438 auto pushFuture = std::async (std::launch::async, [&] {
439439 try {
440- RandomPauses pauses;
440+ RandomPauses pauses{} ;
441441
442442 while (!isStopDma ()) {
443443 // Check if we need to stop in the case of a superpage limit
@@ -500,7 +500,7 @@ class ProgramDmaBench : public Program
500500
501501 // Readout thread (main thread)
502502 try {
503- RandomPauses pauses;
503+ RandomPauses pauses{} ;
504504
505505 while (!isStopDma ()) {
506506 if (!mInfinitePages && mSuperpagesReadOut .load (std::memory_order_relaxed) >= mSuperpageLimit ) {
You can’t perform that action at this time.
0 commit comments