mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
- update .github workflows - update tests Signed-off-by: vivekpatani <9080894+vivekpatani@users.noreply.github.com>
20 lines
467 B
YAML
20 lines
467 B
YAML
name: Fuzzing v3rpc
|
|
on: [push, pull_request]
|
|
jobs:
|
|
fuzzing:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
env:
|
|
TARGET_PATH: ./server/etcdserver/api/v3rpc
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.19.2"
|
|
- run: GOARCH=amd64 CPU=4 make fuzz
|
|
- uses: actions/upload-artifact@v2
|
|
if: failure()
|
|
with:
|
|
path: "${{env.TARGET_PATH}}/testdata/fuzz/**/*"
|