Skip to content

Commit

Permalink
Update build-test.yml with valid paths
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl authored Feb 8, 2025
1 parent 167730f commit 0245e48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
cat access.log
- name: Run goaccess single thread
run: ./goaccess access.log --log-format=VCOMBINED -o report.html
run: ./goaccess access.log --log-format=VCOMBINED -o ./report.html

- name: Run goaccess multi-thread
run: ./goaccess access.log --log-format='%v:%^ %h %^[%x] "%r" %s %b "%R" "%u"' --datetime-format='%d/%b/%Y:%H:%M:%S %z' -o report.html -j 2 -a --tz="Europe/Berlin"
run: ./goaccess access.log --log-format='%v:%^ %h %^[%x] "%r" %s %b "%R" "%u"' --datetime-format='%d/%b/%Y:%H:%M:%S %z' -o ./report.html -j 2 -a --tz="Europe/Berlin"

- name: Run goaccess multi-thread JSON output
run: |
./goaccess access.log --log-format=VCOMBINED -o report.json -j 2 -a --json-pretty-print
cat report.json | jq .
./goaccess access.log --log-format=VCOMBINED -o ./report.json -j 2 -a --json-pretty-print
cat ./report.json | jq .
- name: Make distclean
run: sudo make distclean

0 comments on commit 0245e48

Please sign in to comment.