forked from emacs-mirror/emacs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
need a bit more output for the slow parts
- Loading branch information
1 parent
a611c05
commit 4b88f7e
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,14 @@ jobs: | |
- name: checkout | ||
uses: actions/[email protected] | ||
- run: brew update | ||
- run: brew install make automake gettext texinfo gawk gdb coreutils gnu-sed gnu-which clang-build-analyzer clang-format | ||
- run: brew install make automake gettext texinfo gawk gdb coreutils gnu-sed gnu-which clang-build-analyzer clang-format libstxxl | ||
env: | ||
HOMEBREW_BOOTSNAP: 1 | ||
HOMEBREW_CURL_VERBOSE: 1 | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | ||
HOMEBREW_VERBOSE: 1 | ||
HOMEBREW_VERBOSE_USING_DOTS: 1 | ||
GIT_CURL_VERBOSE: 1 | ||
- name: Initial build | ||
run: | | ||
if test -n "${{ matrix.compiler }}"; then \ | ||
|
@@ -44,10 +48,14 @@ jobs: | |
- name: Build docs | ||
if: "${{ success() }}" | ||
env: | ||
HOMEBREW_BOOTSNAP: 1 | ||
HOMEBREW_CURL_VERBOSE: 1 | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | ||
HOMEBREW_VERBOSE: 1 | ||
HOMEBREW_VERBOSE_USING_DOTS: 1 | ||
GIT_CURL_VERBOSE: 1 | ||
run: | | ||
if test -d doc && test -w doc && test -x "$(which makeinfo)" && test -x "$(which brew)" && test -x "$(which nproc)" && test -n "$(nproc)"; then \ | ||
if test -d doc && test -w doc && test -x "$(which makeinfo)" && test -x "$(which brew)" && test -x "$(which nproc)" && test -n "$(nproc)" && test "$(nproc)" -ge 2; then \ | ||
echo "using $(which makeinfo) for makeinfo with the following version info: $(makeinfo --version)"; \ | ||
brew install texlive; \ | ||
echo "nproc says we can use $(nproc) build jobs."; \ | ||
|
@@ -75,7 +83,7 @@ jobs: | |
make dumpemacs | ||
make emacswrapper | ||
if test "${{ matrix.compiler }}" = "clang"; then \ | ||
make -ki apple_check MAC_VERS_CFLAGS="-mmacosx-version-min=10.5 -stdlib=libc++"; \ | ||
make -ki apple_check MAC_VERS_CFLAGS="-mmacosx-version-min=10.7 -stdlib=libc++"; \ | ||
else \ | ||
make -ki apple_check; \ | ||
fi | ||
|