Skip to content

Commit

Permalink
Stat reporting was broken since June 28 due to missing symlink and
Browse files Browse the repository at this point in the history
makefile not failing
  • Loading branch information
mjambon committed Aug 24, 2021
1 parent 58fd82c commit 5e0a4a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
command: opam exec -- make stat
- run:
name: upload parsing stats
command: python3 ./scripts/upload-stat.py lang/stat.txt
command: python3 ./scripts/upload-stat lang/stat.txt
- store_artifacts:
path: lang/stat.txt

Expand Down
4 changes: 2 additions & 2 deletions lang/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ dry:
#
.PHONY: stat
stat:
set -e; \
for lang in $(STAT_LANGUAGES); do $(MAKE) -C $$lang stat; done
set -eu -o pipefail; \
for lang in $(STAT_LANGUAGES); do $(MAKE) -C $$lang stat; done; \
../scripts/report-stat $(STAT_LANGUAGES) | tee stat.txt

# Run stats on projects-priv.txt instead of projects.txt.
Expand Down
1 change: 1 addition & 0 deletions scripts/report-stat
File renamed without changes.

0 comments on commit 5e0a4a9

Please sign in to comment.