summarylogtreecommitdiffstats
path: root/reproducible-build.patch
blob: dbdcfea8b70dbeb4172004c79eae88ca3ff6db52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/Makefile b/Makefile
index 9e22942..faaa9dd 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ build:
 	$(GODOT) --path . --export "Linux/X11" target/debug/luxtorpeda.x86_64 --no-window
 
 release:
-	cargo build --release
+	cargo build --release --locked
 	touch target/.gdignore
 	mkdir -p target/debug
 	cp -r target/release/* target/debug
@@ -55,7 +55,7 @@ lint:
 	cargo clippy -- -D warnings
 
 test:
-	cargo test
+	cargo test --release --locked
 
 clean:
 	cargo clean