Skip to content

Commit c22828d

Browse files
authored
Merge pull request #3 from Schrottpage/codex/add-step-to-install-flex-and-bison
Add parser generator installation to 3DS build workflow
2 parents 97044f5 + 62730d3 commit c22828d

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/build-3ds.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ jobs:
3131
3ds-freetype \
3232
3ds-zlib
3333
34+
- name: Install parser generators
35+
shell: bash
36+
run: |
37+
if command -v apt-get >/dev/null 2>&1; then
38+
apt-get update
39+
apt-get install -y flex bison
40+
else
41+
pacman -Sy --noconfirm flex bison
42+
fi
43+
3444
- name: Build New 3DS fullheap-safe
3545
shell: bash
3646
run: |

0 commit comments

Comments
 (0)