Skip to content

Commit

Permalink
Update apple-gdb-1824-macos.yml
Browse files Browse the repository at this point in the history
dunno why arparse.h disappears...

Change-Id: I96b98a3949a7f1a983970bc80b6e2de23d0ce795
  • Loading branch information
cooljeanius committed Oct 27, 2023
1 parent fbf1de4 commit 8f71a65
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/apple-gdb-1824-macos.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- vim:fenc=utf-8:et:sw=2:ts=2:sts=2

name: cooljeanius/apple-gdb-1824-macos
on:
push:
Expand All @@ -23,7 +25,14 @@ jobs:
- run: cd src && make all-bfd
- run: cd src && make all-opcodes
- run: cd src && make configure-binutils
- run: cd src/binutils && make arparse.h
- name: Backup that annoying arparse.h header
run: |
cd src/binutils && make arparse.h
if test ! -e ../bfd/arparse.h; then \
cp -v arparse.h ../bfd; \
elif test ! -e ../include/arparse.h; then \
cp -v arparse.h ../include; \
fi
- run: cd src && make
- run: cd src && make check
- run: pwd
Expand Down

0 comments on commit 8f71a65

Please sign in to comment.