Skip to content

Commit 99bcdcc

Browse files
committed
GitHub Actions: consider disabled languages when listing packcc based parsers
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
1 parent d0368a8 commit 99bcdcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/building-with-pegof.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
- run: ./ctags --list-features | grep pegof
4646

4747
- run: |
48-
echo "Targets: $(./ctags --list-languages=_packcc | tr '\n' ',')"
49-
- run: make units LANGUAGES="$(./ctags --list-languages=_packcc | tr '\n' ',')"
48+
echo "Targets: $(./ctags --list-languages=_packcc | while read LANG REST; do echo "$LANG"; done | tr '\n' ',')"
49+
- run: make units LANGUAGES="$(./ctags --list-languages=_packcc | while read LANG REST; do echo "$LANG"; done | tr '\n' ',')"
5050
- run: make dist
5151
# See EXTRA_DIST in Makefile.am.
5252
# Currently we add .pego files.

0 commit comments

Comments
 (0)