|
34 | 34 | - .github/** |
35 | 35 |
|
36 | 36 | jobs: |
37 | | - clippy: |
38 | | - name: Clippy |
39 | | - runs-on: ubuntu-latest |
40 | | - container: |
41 | | - image: amd64/rust |
42 | | - defaults: |
43 | | - run: |
44 | | - working-directory: object_store |
45 | | - steps: |
46 | | - - uses: actions/checkout@v4 |
47 | | - - name: Setup Rust toolchain |
48 | | - uses: ./.github/actions/setup-builder |
49 | | - - name: Setup Clippy |
50 | | - run: rustup component add clippy |
51 | | - # Run different tests for the library on its own as well as |
52 | | - # all targets to ensure that it still works in the absence of |
53 | | - # features that might be enabled by dev-dependencies of other |
54 | | - # targets. |
55 | | - - name: Run clippy with default features |
56 | | - run: cargo clippy -- -D warnings |
57 | | - - name: Run clippy without default features |
58 | | - run: cargo clippy --no-default-features -- -D warnings |
59 | | - - name: Run clippy with fs features |
60 | | - run: cargo clippy --no-default-features --features fs -- -D warnings |
61 | | - - name: Run clippy with aws feature |
62 | | - run: cargo clippy --features aws -- -D warnings |
63 | | - - name: Run clippy with gcp feature |
64 | | - run: cargo clippy --features gcp -- -D warnings |
65 | | - - name: Run clippy with azure feature |
66 | | - run: cargo clippy --features azure -- -D warnings |
67 | | - - name: Run clippy with http feature |
68 | | - run: cargo clippy --features http -- -D warnings |
69 | | - - name: Run clippy with all features |
70 | | - run: cargo clippy --all-features -- -D warnings |
71 | | - - name: Run clippy with all features and all targets |
72 | | - run: cargo clippy --all-features --all-targets -- -D warnings |
| 37 | +# clippy: |
| 38 | +# name: Clippy |
| 39 | +# runs-on: ubuntu-latest |
| 40 | +# container: |
| 41 | +# image: amd64/rust |
| 42 | +# defaults: |
| 43 | +# run: |
| 44 | +# working-directory: object_store |
| 45 | +# steps: |
| 46 | +# - uses: actions/checkout@v4 |
| 47 | +# - name: Setup Rust toolchain |
| 48 | +# uses: ./.github/actions/setup-builder |
| 49 | +# - name: Setup Clippy |
| 50 | +# run: rustup component add clippy |
| 51 | +# # Run different tests for the library on its own as well as |
| 52 | +# # all targets to ensure that it still works in the absence of |
| 53 | +# # features that might be enabled by dev-dependencies of other |
| 54 | +# # targets. |
| 55 | +# - name: Run clippy with default features |
| 56 | +# run: cargo clippy -- -D warnings |
| 57 | +# - name: Run clippy without default features |
| 58 | +# run: cargo clippy --no-default-features -- -D warnings |
| 59 | +# - name: Run clippy with fs features |
| 60 | +# run: cargo clippy --no-default-features --features fs -- -D warnings |
| 61 | +# - name: Run clippy with aws feature |
| 62 | +# run: cargo clippy --features aws -- -D warnings |
| 63 | +# - name: Run clippy with gcp feature |
| 64 | +# run: cargo clippy --features gcp -- -D warnings |
| 65 | +# - name: Run clippy with azure feature |
| 66 | +# run: cargo clippy --features azure -- -D warnings |
| 67 | +# - name: Run clippy with http feature |
| 68 | +# run: cargo clippy --features http -- -D warnings |
| 69 | +# - name: Run clippy with all features |
| 70 | +# run: cargo clippy --all-features -- -D warnings |
| 71 | +# - name: Run clippy with all features and all targets |
| 72 | +# run: cargo clippy --all-features --all-targets -- -D warnings |
73 | 73 |
|
74 | 74 | # test doc links still work |
75 | 75 | # |
76 | 76 | # Note that since object_store is not part of the main workspace, |
77 | 77 | # this needs a separate docs job as it is not covered by |
78 | 78 | # `cargo doc --workspace` |
79 | | - docs: |
80 | | - name: Rustdocs |
81 | | - runs-on: ubuntu-latest |
82 | | - defaults: |
83 | | - run: |
84 | | - working-directory: object_store |
85 | | - env: |
86 | | - RUSTDOCFLAGS: "-Dwarnings" |
87 | | - steps: |
88 | | - - uses: actions/checkout@v4 |
89 | | - - name: Run cargo doc |
90 | | - run: cargo doc --document-private-items --no-deps --workspace --all-features |
| 79 | +# docs: |
| 80 | +# name: Rustdocs |
| 81 | +# runs-on: ubuntu-latest |
| 82 | +# defaults: |
| 83 | +# run: |
| 84 | +# working-directory: object_store |
| 85 | +# env: |
| 86 | +# RUSTDOCFLAGS: "-Dwarnings" |
| 87 | +# steps: |
| 88 | +# - uses: actions/checkout@v4 |
| 89 | +# - name: Run cargo doc |
| 90 | +# run: cargo doc --document-private-items --no-deps --workspace --all-features |
91 | 91 |
|
92 | 92 | # test the crate |
93 | 93 | # This runs outside a container to workaround lack of support for passing arguments |
@@ -160,8 +160,8 @@ jobs: |
160 | 160 |
|
161 | 161 | - name: Setup Rust toolchain |
162 | 162 | run: | |
163 | | - rustup toolchain install stable |
164 | | - rustup default stable |
| 163 | + rustup toolchain install 1.80.0 |
| 164 | + rustup default 1.80.0 |
165 | 165 |
|
166 | 166 | - name: Run object_store tests |
167 | 167 | run: cargo test --features=aws,azure,gcp,http |
@@ -210,15 +210,15 @@ jobs: |
210 | 210 | - name: Build wasm32-wasip1 |
211 | 211 | run: cargo build --target wasm32-wasip1 |
212 | 212 |
|
213 | | - windows: |
214 | | - name: cargo test LocalFileSystem (win64) |
215 | | - runs-on: windows-latest |
216 | | - defaults: |
217 | | - run: |
218 | | - working-directory: object_store |
219 | | - steps: |
220 | | - - uses: actions/checkout@v4 |
221 | | - with: |
222 | | - submodules: true |
223 | | - - name: Run LocalFileSystem tests |
224 | | - run: cargo test local::tests |
| 213 | +# windows: |
| 214 | +# name: cargo test LocalFileSystem (win64) |
| 215 | +# runs-on: windows-latest |
| 216 | +# defaults: |
| 217 | +# run: |
| 218 | +# working-directory: object_store |
| 219 | +# steps: |
| 220 | +# - uses: actions/checkout@v4 |
| 221 | +# with: |
| 222 | +# submodules: true |
| 223 | +# - name: Run LocalFileSystem tests |
| 224 | +# run: cargo test local::tests |
0 commit comments