Skip to content

Commit

Permalink
Move lexer.h first in the workaround for git checkout timestamps, bec…
Browse files Browse the repository at this point in the history
…ause parser.? depends on it.
  • Loading branch information
katef committed Jan 2, 2021
1 parent 7cccb2a commit e87c8c8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/emcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ jobs:
- name: make
run: |
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
# note: lexer.h first, because parser.? depends on it
find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
bmake -r -j 2 DEBUG=1 PKGCONF=pkg-config CC=${{ matrix.cc }}
- name: test
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ jobs:
- name: make
run: |
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
# note: lexer.h first, because parser.? depends on it
find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
${{ matrix.make }} -r -j 2 ${{ matrix.debug }}=1 PKGCONF=pkg-config CC=${{ matrix.cc }}
- name: test
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
- name: make
run: |
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
# note: lexer.h first, because parser.? depends on it
find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
bmake -r -j 2 PKGCONF=pkg-config CC=${{ matrix.cc }}
- name: test
Expand Down Expand Up @@ -92,8 +93,9 @@ jobs:
- name: make
run: |
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
# note: lexer.h first, because parser.? depends on it
find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
bmake -r -j 2 NOSTRIP=1 PKGCONF=pkg-config CC=${{ matrix.cc }}
- name: test
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/san.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ jobs:
- name: make
run: |
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
# note: lexer.h first, because parser.? depends on it
find . -name 'lexer.?' -exec touch '{}' \; # workaround for git checkout timestamps
find . -name 'parser.?' -exec touch '{}' \; # workaround for git checkout timestamps
bmake -r -j 2 ${{ matrix.san }}=1 ${{ matrix.debug }}=1 PKGCONF=pkg-config CC=${{ matrix.cc }}
- name: test
Expand Down

0 comments on commit e87c8c8

Please sign in to comment.