Skip to content

Commit e71ff4f

Browse files
committed
Fix CI
1 parent 398f01f commit e71ff4f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build libfuzzer
1+
name: Build fuzzercorn
22

33
on:
44
push:
@@ -9,5 +9,8 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v2
1111

12-
- name: Build libfuzzer
12+
- name: '🛠️ Checkout submodules'
13+
run: git submodule update --init
14+
15+
- name: Build fuzzercorn
1316
run: mkdir build && cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug && cmake --build build -j 4

.github/workflows/pypi.yml

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v2
3535

36+
- name: '🛠️ Checkout submodules'
37+
run: git submodule update --init
38+
3639
- name: '🛠️ Set up Python'
3740
uses: actions/setup-python@v2
3841
with:

0 commit comments

Comments
 (0)