feat: add rust toolchain installation and build step for risspam in CI

Add curl to apt install list and install Rust nightly via rustup in the CI workflow. Update Makefile all target to include build_risspam before run_risspam, ensuring the Rust-based risspam binary is compiled before execution.
This commit is contained in:
2024-11-30 20:10:24 +00:00
parent 857be54db5
commit 9967ea9a6c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
CC = gcc
CFLAGS = -Wall -Werror -Wextra -Ofast -std=c2x
all: build run valgrind run_risspam
all: build run valgrind build_risspam run_risspam
build:
@# removed -pedantic flag because it doesn't accept ' for formatting numbers