mirror of
https://github.com/angr/pyvex
synced 2026-06-21 13:47:01 +00:00
cd758543f1
* trailing whitespace, pyupgrade, prefer builtin constructors * lint
29 lines
604 B
YAML
29 lines
604 B
YAML
name: Custom CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
image:
|
|
description: Container image to run with
|
|
type: string
|
|
required: true
|
|
nightly:
|
|
description: Run in nightly mode (include slow tests, no dependent projects)
|
|
type: boolean
|
|
required: true
|
|
afl:
|
|
description: Set parameters for AFL
|
|
type: boolean
|
|
required: true
|
|
|
|
|
|
jobs:
|
|
ci:
|
|
uses: angr/ci-settings/.github/workflows/angr-ci.yml@master
|
|
with:
|
|
container_image: ${{ inputs.image }}
|
|
nightly: ${{ inputs.nightly }}
|
|
afl: ${{ inputs.afl }}
|
|
|
|
|