File tree 1 file changed +0
-24
lines changed
1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 22
22
toolchain : stable
23
23
override : true
24
24
25
- - name : Cache cargo registry
26
- uses : actions/cache@v3
27
- with :
28
- path : ~/.cargo/registry
29
- key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
30
- restore-keys : |
31
- ${{ runner.os }}-cargo-registry-
32
-
33
- - name : Cache cargo index
34
- uses : actions/cache@v3
35
- with :
36
- path : ~/.cargo/index
37
- key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
38
- restore-keys : |
39
- ${{ runner.os }}-cargo-index-
40
-
41
- - name : Cache cargo build
42
- uses : actions/cache@v3
43
- with :
44
- path : target
45
- key : ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
46
- restore-keys : |
47
- ${{ runner.os }}-cargo-build-
48
-
49
25
- name : Build Server
50
26
working-directory : local_server
51
27
run : cargo build --release --manifest-path=Cargo.toml
You can’t perform that action at this time.
0 commit comments