Skip to content

Commit 075cff2

Browse files
committed
try
1 parent 5c03a29 commit 075cff2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,35 +40,37 @@ jobs:
4040
- "hdfs"
4141
runs-on: ubuntu-latest
4242
steps:
43-
44-
- name: Install native libs
45-
run: sudo apt-get install -y libkrb5-dev libgsasl-dev
46-
4743
- name: Install Protoc
4844
uses: arduino/setup-protoc@v2
4945
with:
5046
version: "23.2"
5147
- uses: actions/checkout@v3
48+
5249
- name: Build
5350
working-directory: ./
5451
run: cargo build --features hdfs --verbose
5552
if: ${{ matrix.features == '' }}
53+
5654
- name: Build with memory-prof
5755
working-directory: ./
5856
run: cargo build --verbose --features memory-prof
5957
if: ${{ matrix.features == 'memory-prof' }}
58+
6059
- name: Code style check
6160
working-directory: ./
6261
run: cargo fmt --check
6362
if: ${{ matrix.features == '' }}
63+
6464
- name: Run basic tests
6565
working-directory: ./
6666
run: cargo test --verbose -- --test-threads=1
6767
if: ${{ matrix.features == '' }}
68+
6869
- name: Run tests with memory-prof
6970
working-directory: ./
7071
run: cargo test --verbose --features memory-prof -- --test-threads=1
7172
if: ${{ matrix.features == 'memory-prof' }}
73+
7274
- name: Run tests with hdfs
7375
working-directory: ./
7476
run: cargo test --verbose --features hdfs -- --test-threads=1

0 commit comments

Comments
 (0)