Skip to content

Commit 08f6b99

Browse files
committed
remove conditionals from CIfuzz
1 parent b18d030 commit 08f6b99

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313
with: { fetch-depth: 2 }
14-
- run: if ./test/match_changed_files.sh '^src/' ; then echo GO=1 >> $GITHUB_ENV ; fi
1514
- name: Build Fuzzers
1615
id: build
17-
if: ${{ env.GO == 1 }}
1816
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
1917
with:
2018
oss-fuzz-project-name: 'mongoose'
2119
dry-run: false
2220
language: c++
2321
- name: Run Fuzzers
24-
if: ${{ env.GO == 1 }}
2522
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
2623
with:
2724
oss-fuzz-project-name: 'mongoose'
@@ -30,7 +27,7 @@ jobs:
3027
language: c++
3128
- name: Upload Crash
3229
uses: actions/upload-artifact@v4
33-
if: env.GO == 1 && failure() && steps.build.outcome == 'success'
30+
if: failure() && steps.build.outcome == 'success'
3431
with:
3532
name: artifacts
3633
path: ./out/artifacts

0 commit comments

Comments
 (0)