File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,17 @@ jobs:
40
40
- name : Show YDB server version
41
41
run : docker ps; docker exec ydb /ydbd -V
42
42
43
- - name : Install rust
43
+ - name : Install stable rust
44
44
uses : dtolnay/rust-toolchain@v1
45
45
with :
46
- toolchain : ${{ env[matrix.rust_version] }}, nightly
46
+ toolchain : ${{ env[matrix.rust_version] }}
47
+ components : clippy, rustfmt
48
+
49
+ - name : Install nightly rust
50
+ if : matrix.rust_version == 'RUST_VERSION_NEW'
51
+ uses : dtolnay/rust-toolchain@v1
52
+ with :
53
+ toolchain : nightly
47
54
components : clippy, rustfmt
48
55
49
56
- name : Cargo install
61
68
rustc --version
62
69
cargo --version
63
70
echo "CARGO_INCREMENTAL=$CARGO_INCREMENTAL"
64
- echo "::set-output name=version::$(rustc --version | cut -d ' ' -f 2)"
71
+ echo "name=version::$(rustc --version | cut -d ' ' -f 2)" >> $GITHUB_OUTPUT
65
72
66
73
- name : Rust cache
67
74
uses : Swatinem/rust-cache@v2
Original file line number Diff line number Diff line change 33
33
ydb-slo-action-init :
34
34
# // https://github.com/ydb-platform/ydb-rs-sdk/issues/227
35
35
if : ${{ false }}
36
- if : (!contains(github.event.pull_request.labels.*.name, 'no slo'))
36
+ # if: (!contains(github.event.pull_request.labels.*.name, 'no slo'))
37
37
38
38
name : Run YDB SLO Tests
39
39
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments