File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 17
17
OPENSSL_DIR : /usr/include/openssl
18
18
OPENSSL_LIB_DIR : /usr/lib/x86_64-linux-gnu
19
19
OPENSSL_INCLUDE_DIR : /usr/include/openssl
20
+ steps :
21
+ - name : Check out repository
22
+ uses : actions/checkout@v4
23
+
24
+ - name : Install dependencies
25
+ run : |
26
+ apt-get update
27
+ apt-get install -y curl git build-essential libssl-dev
28
+ - name : Build project
29
+ run : cargo build --release
20
30
21
31
setup :
22
32
runs-on : ubuntu-latest
@@ -30,13 +40,11 @@ jobs:
30
40
run : |
31
41
apt-get update
32
42
apt-get install -y curl git build-essential libssl-dev
33
-
34
43
- name : Install Rust
35
44
id : install-rust
36
45
run : |
37
46
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
38
47
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
39
-
40
48
- name : Export cargo path
41
49
id : export-cargo-path
42
50
run : echo "path=$HOME/.cargo/bin" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments