0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ClusterFuzzLite でぺろっと C/C++ project の fuzzer を Github actions で走らせるメモ

Posted at

背景

LLVMfuzzer とか CI に統合したい.

ClusterFuzzLite 使ってみます.

設定

自身の C/C++ アプリですでに fuzzer をする仕組みがあると仮定します.

  • ローカルでビルドする設定をしておく
  • Github actions を設定する(github actions を利用する場合)

でいけます!

とりあえず PR fuzzing(PullReq あったら fuzzer 走らせる)をやります.

ローカルでビルドする設定 

Docker が必要です(ちょっとめんどいですね).

Docker の起動とか Docker 内のファイルコピーとかで 1 分くらいかかってしまうので, 非 Docker でスクリプト動作確認しておくとよいでしょう.

サンプル

TinyUSDZ の例を参照ください.

https://github.com/syoyo/tinyusdz/blob/dev/.github/workflows/cflite_pr.yml
(初期設定をコピペのみ)

Issues

Github actions だと, 結果が artifact file だけっぽいのできちんと動いたのか動かなかったのかわからないっぽい.

TODO

  • Batch fuzzing など対応する
  • 将来的に自社のサーバなどで動かす(マイニングなどで遊んでいる CPU で動かすなど)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?