13 lines
317 B
Makefile
13 lines
317 B
Makefile
.PHONY: test smoke nightly corpus
|
|
|
|
test: smoke
|
|
|
|
smoke:
|
|
python tests/supply-chain/run_suite.py --profile smoke --seed 20260226
|
|
|
|
nightly:
|
|
python tests/supply-chain/run_suite.py --profile nightly --seed 20260226
|
|
|
|
corpus:
|
|
python tests/supply-chain/05-corpus/build_corpus_archive.py --output out/supply-chain/05-corpus
|