-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.replit
More file actions
32 lines (25 loc) · 793 Bytes
/
.replit
File metadata and controls
32 lines (25 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
modules = ["cpp"]
[nix]
channel = "stable-24_05"
packages = ["openssl", "pkg-config"]
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Complete RFC Vectors Test"
[[workflows.workflow]]
name = "Complete RFC Vectors Test"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "g++ -std=c++17 $(pkg-config --cflags openssl) -I. -o rfc_vectors_complete rfc_vectors_test.cpp lib_rfc/*.cpp $(pkg-config --libs openssl) && ./rfc_vectors_complete"
[deployment]
run = [
"sh",
"-c",
"apt-get update && apt-get install -y libssl-dev g++ make && g++ -std=c++17 -o spake2_test main.cpp spake2_crypto.cpp test_utils.cpp -lssl -lcrypto && ./spake2_test",
]