Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajSchlej authored Feb 14, 2025
1 parent 8fceef5 commit e7fffbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ jobs:
cmake --build build --parallel
build_test_linux_fuzzer:
name: Fuzzer in AFL mode (Linux x64)
name: Fuzzer build test (Clang, Linux x64)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand All @@ -315,17 +315,17 @@ jobs:
shell: bash
run: cmake --build .
- name: Create dist directory
run: cmake -E make_directory ${{runner.workspace}}/UEFITool/dist
run: cmake -E make_directory ${{runner.workspace}}/dist
- name: Archive everything
working-directory: ${{runner.workspace}}/build
shell: bash
run: |
UEFITOOL_VER=$(cat ../UEFITool/version.h | grep PROGRAM_VERSION | cut -d'"' -f2 | sed 's/NE alpha /A/') ; \
zip -qryj ../UEFITool/dist/ffsparser_fuzzer_NE_${UEFITOOL_VER}_x64_linux.zip ./fuzzing/ffsparser_fuzzer
zip -qryj ../dist/ffsparser_fuzzer_NE_${UEFITOOL_VER}_x64_linux.zip ./ffsparser_fuzzer
- name: Upload to artifacts
uses: actions/upload-artifact@v4
with:
name: Fuzzer Linux build
name: Fuzzer
path: dist/*.zip

# Static Analysis
Expand Down

0 comments on commit e7fffbb

Please sign in to comment.