Skip to content

Commit

Permalink
Update apple-gdb-1824-macos.yml
Browse files Browse the repository at this point in the history
few more minor tweaks

Change-Id: I7c4769fb4d0fa8511bee1abeb2b7e6d96ebd91b4
  • Loading branch information
cooljeanius committed Mar 19, 2024
1 parent 9143360 commit 1941737
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/apple-gdb-1824-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
COMPILER_FORMULA=""; \
fi
date && sync
brew install autogen texi2html texinfo deja-gnu expect dmalloc fastjar gperf help2man ant-contrib findutils grep coreutils remake byacc texlive gawk autoconf-archive automake scons smake "${COMPILER_FORMULA}"
brew install autogen texi2html texinfo deja-gnu expect dmalloc fastjar osslsigncode gperf help2man ant-contrib findutils grep coreutils remake byacc texlive gawk util-macros autoconf-archive automake scons smake "${COMPILER_FORMULA}"
- run: test -e ./.profile_generic && test -r ./.profile_generic && test -s ./.profile_generic && sync && source ./.profile_generic && sync && (env | uniq | sort | uniq) && sync && sleep 1
- run: ./configure --enable-silent-rules CC=${{ matrix.compiler }} OBJC=${{ matrix.compiler }}
- run: make -ki -C libcheckpoint || make -ki -C libcheckpoint -f Makefile_orig || make -ki -C macsbug || make -ki -C macsbug/gdb_plugin_support || (if test -x "$(which ant)"; then ant; else echo "ant missing"; fi)
Expand Down Expand Up @@ -133,6 +133,8 @@ jobs:
find "${subdir}" -name '*.Plo' -print; \
elif test -x "$(which sync)"; then \
sync && pwd; \
else \
echo "unhandled possibility for ${subdir}"; \
fi; \
if test -r "${subdir}"/Makefile && test -s "${subdir}"/Makefile && test -w "${subdir}"; then \
pushd "${subdir}"; \
Expand All @@ -142,6 +144,11 @@ jobs:
else \
sync && echo "no usable Makefile found in ${subdir}"; \
fi; \
if test -r "${subdir}"/.deps; then \
(find "${subdir}" -name '*.Tpo' -print) || echo "depfile generation may have failed for ${subdir}"; \
else \
echo "depdir generation may have failed for ${subdir}"; \
fi; \
done
sync && echo "hopefully libtool_gnu timestamps will be fine..."
- name: Full build to get anything that might have been missed
Expand Down

0 comments on commit 1941737

Please sign in to comment.