Skip to content

Commit

Permalink
[Template merge] Update Zulip GH Action, minor fixes after infra reor…
Browse files Browse the repository at this point in the history
…g, and require newest giella-core
  • Loading branch information
snomos committed Jan 23, 2024
1 parent 7723ba4 commit ccc3c1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zulip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
branches:
- '**'
jobs:
build-and-deploy:
send-push-info-to-zulip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions m4/giella-macros.m4
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ AC_MSG_RESULT([$GIELLA_CORE])
###############################################################
### This is the version of the Giella Core that we require. ###
### UPDATE AS NEEDED.
_giella_core_min_version=0.21.0
_giella_core_min_version=0.21.1
# GIELLA_CORE/GTCORE env. variable, required by the infrastructure to find scripts:
AC_ARG_VAR([GIELLA_CORE], [directory for the Giella infra core scripts and other required resources])
Expand Down Expand Up @@ -790,7 +790,7 @@ AC_ARG_ENABLE([L2],
[enable_L2=no])
AS_IF([test x$enable_oahpa = xno], [enable_L2=no],
[AS_IF([test x$enable_L2 != xno -a \
"$(find ${srcdir}/src -name "*-L2.*" | head -n 1)" = "" ],
"$(find ${srcdir}/src/fst -name "*-L2.*" | head -n 1)" = "" ],
[AC_MSG_ERROR([You asked for the L2 analyser, but no L2 files were found])])])
AM_CONDITIONAL([WANT_L2], [test "x$enable_L2" != xno])
Expand Down Expand Up @@ -845,9 +845,9 @@ AC_ARG_ENABLE([abbr],
[enable_abbr=$enableval],
[enable_abbr=no])
AS_IF([test x$enable_abbr != xno -a \
"$(find ${srcdir}/src/fst/morphology/stems/ -name "abbreviations.lexc" | head -n 1)" = "" ],
"$(find ${srcdir}/src/fst/morphology/stems -name "abbreviations.lexc" | head -n 1)" = "" ],
[AC_MSG_ERROR([You asked for abbr.txt generation, but have no file \
src/fst/morphoogy/stems/abbreviations.lexc])])
src/fst/morphology/stems/abbreviations.lexc])])
AS_IF([test x$enable_abbr = xyes -a x$enable_generators = xno],
[AC_MSG_ERROR([You need to enable generators to build the abbr file])])
AM_CONDITIONAL([WANT_ABBR], [test "x$enable_abbr" != xno])
Expand Down
2 changes: 1 addition & 1 deletion test/src/run-lexc-testcases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ while test ! -x $relpath/$testrunner ; do
done

# Get list of source files:
source_files="$(find ${srcdir}/$relpath/../src/fst -name '*.lexc' \
source_files="$(find ${srcdir}/$relpath/../src/fst/morphology -name '*.lexc' \
-not -name '$concat_lexc_file')"

# One empty line in the beginning:
Expand Down

0 comments on commit ccc3c1d

Please sign in to comment.