Dongjia "toka" Zhang 7a9f46b9fb
Remove nightly from CI. (#3232)
* stable ci

* fixer

* aa

* no -z flag

* doc

* ??

* this one needs

* nightly for some of them ..

* turn off fail fast for now 🥱

* aaa

* afasdfasfas

* mm

* tmate

* linker's fault

* fixer

* f

* dfsafdasfasf
2025-05-16 15:23:44 +02:00

31 lines
580 B
Makefile

import "../../../just/libafl-qemu.just"
import "../fuzzer_name.just"
[unix]
compile_runner:
#!/bin/sh
. {{ DOTENV }}
cargo \
build \
--package runner \
--target x86_64-unknown-linux-gnu \
--profile {{ PROFILE }} \
--target-dir {{ TARGET_DIR }} \
--features {{ ARCH }}
[unix]
fix_runner:
#!/bin/sh
. {{ DOTENV }}
cargo \
fix \
--package runner \
--target x86_64-unknown-linux-gnu \
--profile {{ PROFILE }} \
--target-dir {{ TARGET_DIR }} \
--features {{ ARCH }} \
--allow-dirty
[unix]
build_runner: compile_runner