File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
version : 2
5
5
updates :
6
+ - package-ecosystem : " github-actions"
7
+ directory : " /"
8
+ target-branch : main
9
+ schedule :
10
+ interval : " daily"
6
11
- package-ecosystem : " cargo"
7
12
directory : " /"
8
13
target-branch : main
Original file line number Diff line number Diff line change 3
3
} :
4
4
5
5
pkgs . mkShell {
6
-
7
6
buildInputs = [
8
7
pkgs . rustup
9
8
] ;
@@ -17,14 +16,14 @@ pkgs.mkShell {
17
16
DATA_DIR="/tmp/rust"
18
17
export RUSTUP_HOME="$DATA_DIR/rustup"
19
18
export CARGO_HOME="$DATA_DIR/cargo"
20
- export PATH=$CARGO_niHOME /bin:$PATH
19
+ export PATH=$CARGO_HOME /bin:$PATH
21
20
mkdir -p "$CARGO_HOME"
22
21
mkdir -p "$RUSTUP_HOME"
23
22
mkdir -p "$DATA_DIR/shell"
24
23
25
24
rustup default stable
26
25
rustup update
27
- cargo fetch
26
+ cargo build
28
27
29
28
echo
30
29
echo
@@ -35,5 +34,4 @@ pkgs.mkShell {
35
34
echo "$(rustup --version)"
36
35
echo "$(cargo --version)"
37
36
'' ;
38
-
39
37
}
You can’t perform that action at this time.
0 commit comments