File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments