There was an error while loading. Please reload this page.
1 parent 1f1d45c commit 92dedd3Copy full SHA for 92dedd3
1 file changed
scripts/action-atheris.sh
@@ -22,10 +22,15 @@ fi
22
python -m pip install --upgrade pip
23
python -m pip install maturin atheris
24
25
+wheel_dir="${RUNNER_TEMP:-/tmp}/pickle-fuzzer-wheels"
26
+mkdir -p "$wheel_dir"
27
+
28
pushd "${GITHUB_ACTION_PATH}" >/dev/null
-maturin develop --release
29
+maturin build --release -o "$wheel_dir"
30
popd >/dev/null
31
32
+python -m pip install "${wheel_dir}"/*.whl
33
34
if [[ -n "${INPUT_HARNESS_ARGS:-}" ]]; then
35
echo "Running harness: ${harness_path} ${INPUT_HARNESS_ARGS}"
36
# shellcheck disable=SC2086
0 commit comments