Skip to content

Commit

Permalink
help debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanssen2 committed Jan 23, 2025
1 parent f3209be commit ec79a9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ jobs:
run: ./configure --prefix $GITHUB_WORKSPACE
- name: patch configuration for OSX
run: gsed -E "s|^YACC = .+$|YACC = /usr/local/opt/[email protected]/bin/bison|" -i config.mf && gsed -E "s|^SED = .+$|SED = /usr/local/opt/gnu-sed/libexec/gnubin/sed|" -i config.mf && gsed -E "s/ -D_XOPEN_SOURCE=500 / /" -i config.mf && gsed -E "s/ -std=c\+\+17 / -std=c\+\+11 /" -i config.mf
- name: make parser
run: make src/lexer.cc src/parser.cc
- name: Archive parser
uses: actions/upload-artifact@v4
with:
name: parser
path: src/parser.* src/lexer.*
- name: make
run: make -j 3
- name: make install
Expand Down

0 comments on commit ec79a9a

Please sign in to comment.