Skip to content

Commit 2fa9dde

Browse files
committed
Group github action log lines
Previously, the workflow used to test the code does not group log messages, possibly making the output too lengthy and hard to scroll on the web. Especially the logs generated by dudect/fixture.c, although it shows perfectly fine on local machines by rewriting previous lines in the terminal, github actions does not seem to support it. The log grouping is done by adding "::group::{title}" and "::endgroup::" which are mentioned in github docs. Another argument "--group-output" is added to "scripts/driver.py" to optionally enable grouping. Added another target "test_ga" in "Makefile" and replaced "make test" with it in github workflow. ("ga" is the abbreviation for "github actions") Change-Id: I77d4455967b6d7e1d118049d91e67346f6dcdc1a Link: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#grouping-log-lines
1 parent 29d90ea commit 2fa9dde

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
cat scripts/kirby.raw
2828
- name: make test
2929
run: |
30-
make test || (cat scripts/weeping.raw ; exit 1)
30+
make test_ga || (cat scripts/weeping.raw ; exit 1)
3131
cat scripts/kirby.raw
3232
3333
coding-style:

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ test: qtest scripts/driver.py
6060
$(Q)scripts/check-repo.sh
6161
scripts/driver.py -c
6262

63+
test_ga: qtest scripts/driver.py
64+
$(Q)scripts/check-repo.sh
65+
scripts/driver.py -c --group-output
66+
6367
valgrind_existence:
6468
@which valgrind 2>&1 > /dev/null || (echo "FATAL: valgrind not found"; exit 1)
6569

scripts/driver.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class Tracer:
1717
autograde = False
1818
useValgrind = False
1919
colored = False
20+
groupOutput = False
2021

2122
traceDict = {
2223
1: "trace-01-ops",
@@ -69,13 +70,15 @@ def __init__(self,
6970
verbLevel=0,
7071
autograde=False,
7172
useValgrind=False,
72-
colored=False):
73+
colored=False,
74+
groupOutput=False):
7375
if qtest != "":
7476
self.qtest = qtest
7577
self.verbLevel = verbLevel
7678
self.autograde = autograde
7779
self.useValgrind = useValgrind
7880
self.colored = colored
81+
self.groupOutput = groupOutput
7982

8083
def printInColor(self, text, color):
8184
if self.colored == False:
@@ -117,9 +120,13 @@ def run(self, tid=0):
117120
tname = self.traceDict[t]
118121
if self.verbLevel > 0:
119122
print("+++ TESTING trace %s:" % tname)
123+
if self.groupOutput:
124+
print("::group::Trace %s" % tname, flush=True)
120125
ok = self.runTrace(t)
121126
maxval = self.maxScores[t]
122127
tval = maxval if ok else 0
128+
if self.groupOutput:
129+
print("::endgroup::", flush=True)
123130
if tval < maxval:
124131
self.printInColor("---\t%s\t%d/%d" % (tname, tval, maxval), self.RED)
125132
else:
@@ -146,7 +153,7 @@ def run(self, tid=0):
146153
sys.exit(1)
147154

148155
def usage(name):
149-
print("Usage: %s [-h] [-p PROG] [-t TID] [-v VLEVEL] [--valgrind] [-c]" % name)
156+
print("Usage: %s [-h] [-p PROG] [-t TID] [-v VLEVEL] [--valgrind] [-c] [--group-output]" % name)
150157
print(" -h Print this message")
151158
print(" -p PROG Program to test")
152159
print(" -t TID Trace ID to test")
@@ -163,8 +170,9 @@ def run(name, args):
163170
autograde = False
164171
useValgrind = False
165172
colored = False
173+
groupOutput = False
166174

167-
optlist, args = getopt.getopt(args, 'hp:t:v:A:c', ['valgrind'])
175+
optlist, args = getopt.getopt(args, 'hp:t:v:A:c', ['valgrind', 'group-output'])
168176
for (opt, val) in optlist:
169177
if opt == '-h':
170178
usage(name)
@@ -181,6 +189,8 @@ def run(name, args):
181189
useValgrind = True
182190
elif opt == '-c':
183191
colored = True
192+
elif opt == '--group-output':
193+
groupOutput = True
184194
else:
185195
print("Unrecognized option '%s'" % opt)
186196
usage(name)
@@ -190,7 +200,8 @@ def run(name, args):
190200
verbLevel=vlevel,
191201
autograde=autograde,
192202
useValgrind=useValgrind,
193-
colored=colored)
203+
colored=colored,
204+
groupOutput=groupOutput)
194205
t.run(tid)
195206

196207

0 commit comments

Comments
 (0)