Skip to content

Commit 62730d3

Browse files
committed
Add flex/bison install step to build workflow
1 parent 7ea64f6 commit 62730d3

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)