Skip to content

Commit

Permalink
Remove token from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimahriman committed Mar 24, 2024
1 parent e078a45 commit 8d993ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: sudo apt-get install -y libkrb5-dev libgsasl-dev

- name: build and lint with clippy
run: cargo clippy --tests --features kerberos,token,integration-test
run: cargo clippy --tests --features kerberos,integration-test

- name: Check docs
run: cargo doc
Expand All @@ -55,11 +55,8 @@ jobs:
- name: Check kerberos
run: cargo check --features kerberos

- name: Check token
run: cargo check --features token

- name: Check all features
run: cargo check --features kerberos,token,integration-test
run: cargo check --features kerberos,integration-test

test:
strategy:
Expand Down Expand Up @@ -102,4 +99,4 @@ jobs:
echo "$GITHUB_WORKSPACE/hadoop-3.3.6/bin" >> $GITHUB_PATH
- name: Run tests
run: cargo test --features kerberos,token,integration-test
run: cargo test --features kerberos,integration-test
2 changes: 0 additions & 2 deletions crates/hdfs-native/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
//!
//! # Optional cargo package features
//! - `kerberos` - include support for Kerberos authentication. Uses the libgssapi package. Supports all RPC authentication and encryption methods.
//! - `token` - include support for Token authentication. Uses the gsasl native library. Only
//! supports authentication, not integrity or privacy modes.
pub mod client;
pub(crate) mod common;
Expand Down

0 comments on commit 8d993ef

Please sign in to comment.