-
-
Notifications
You must be signed in to change notification settings - Fork 3
29 lines (29 loc) · 1.37 KB
/
apple-gdb-1824-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: cooljeanius/apple-gdb-1824-macos
on:
push:
branches:
- "**/*"
pull_request:
jobs:
test:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v4
- run: brew update
- run: sudo apt-get install autogen libobjc2 objc-codegenutils objc-run objconv texi2html texinfo flex aarch64-elf-binutils arm-linux-gnueabihf-binutils arm-none-eabi-binutils binutils i686-elf-binutils riscv64-elf-binutils x86_64-elf-binutils x86_64-linux-gnu-binutils pax ncurses deja-gnu expect guile tcl-tk m4 osxutils dmalloc fastjar gdb gettext gperf help2man ant ant-contrib findutils grep coreutils
- run: test -e ./.profile_generic && source ./.profile_generic
- run: ./configure --enable-silent-rules
- 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; fi)
- run: cd src && ./configure --disable-werror --disable-opts-test --enable-carbon-framework --enable-debug-symbols-framework --enable-64-bit-bfd --enable-silent-rules
- run: cd src && make
- run: cd src && make check
- run: pwd
if: "${{ success() }}"
- run: find . -name config.log -print0 | xargs cat | grep -i error | sort | uniq
if: "${{ failure() }}"
strategy:
matrix:
compiler:
- clang
- gcc