Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
in GitHub Actions, the bootstrapped emacs crashes while running,
so instead dial the build back further to only build temacs.
There aren't any similar crashes on Travis for some reason...
  • Loading branch information
cooljeanius committed Aug 23, 2023
1 parent 2643834 commit 6e1b0d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/emacs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# # 'compiler' was not transformed because there is no suitable equivalent in GitHub Actions
- run: sudo apt-get update -qq
- run: DEBIAN_FRONTEND=noninteractive sudo apt-get install --no-install-recommends -y -qq -o=Dpkg::Use-Pty=0 libc-dev gcc make autoconf automake libncurses-dev gobjc gobjc++ gobjc-multilib gobjc++-multilib autopoint
- run: sh ./autogen.sh && ./configure --without-makeinfo --without-gif --without-gnutls --enable-silent-rules --disable-autodepend --without-imagemagick --enable-gcc-warnings --with-x-toolkit=no --with-xpm=no --disable-openmp && make only_bootstrap-emacs
- run: sh ./autogen.sh && ./configure --without-makeinfo --without-gif --without-gnutls --enable-silent-rules --disable-autodepend --without-imagemagick --enable-gcc-warnings --with-x-toolkit=no --with-xpm=no --disable-openmp && make only_temacs
strategy:
matrix:
compiler:
Expand Down
2 changes: 1 addition & 1 deletion src/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -4813,7 +4813,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
if (do_display)
redisplay_preserve_echo_area (12);
}
#ifdef EWOULDBLOCK
#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
else if (nread == -1 && errno == EWOULDBLOCK)
;
#endif
Expand Down

0 comments on commit 6e1b0d1

Please sign in to comment.