Skip to content

Commit f725eb1

Browse files
Xuanwotisonkun
andauthored
docs: Add dependencies list for all packages (#3743)
Signed-off-by: Xuanwo <[email protected]> Co-authored-by: tison <[email protected]>
1 parent 8182d04 commit f725eb1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4466
-13
lines changed

.github/actions/setup/action.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ inputs:
2626
description: "This setup needs nextest or not"
2727
need-protoc:
2828
description: "This setup needs protoc or not"
29+
need-deny:
30+
description: "This setup needs cargo-deny or not"
2931
github-token:
3032
description: "Github Token"
3133
default: ""
@@ -76,6 +78,21 @@ runs:
7678
shell: bash
7779
run: cargo install [email protected] --locked
7880

81+
- name: Cache cargo-deny on linux
82+
id: cache-deny
83+
uses: actions/cache@v3
84+
if: inputs.need-deny == 'true'
85+
with:
86+
path: |
87+
~/.cargo/bin/cargo-deny
88+
~/.cargo/bin/cargo-deny.exe
89+
key: r0-${{runner.os}}-deny-0.14.3
90+
91+
- name: Build cargo-deny if not cached
92+
if: steps.cache-deny.outputs.cache-hit != 'true' && inputs.need-deny == 'true'
93+
shell: bash
94+
run: cargo install [email protected] --locked
95+
7996
- name: Setup rust on linux
8097
if: runner.os == 'Linux' && inputs.need-rocksdb == 'true'
8198
shell: bash

.github/workflows/ci.yml

+42
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,48 @@ jobs:
5353
- name: Check diff
5454
run: git diff --exit-code
5555

56+
check_dependencies:
57+
runs-on: ubuntu-latest
58+
steps:
59+
- uses: actions/checkout@v4
60+
61+
- name: Setup Rust toolchain
62+
uses: ./.github/actions/setup
63+
with:
64+
need-deny: true
65+
66+
- name: Check dependencies
67+
run: python3 ./scripts/dependencies.py check
68+
69+
check_website_dependencies:
70+
runs-on: ubuntu-latest
71+
steps:
72+
- uses: actions/checkout@v4
73+
74+
- uses: pnpm/action-setup@v2
75+
with:
76+
version: 8
77+
78+
- uses: actions/setup-node@v4
79+
with:
80+
node-version: '18'
81+
cache: pnpm
82+
cache-dependency-path: "website/pnpm-lock.yaml"
83+
84+
- name: Corepack
85+
working-directory: website
86+
run: corepack enable
87+
88+
- name: Install Dependencies
89+
working-directory: website
90+
run: pnpm install --frozen-lockfile
91+
92+
- name: Check dependencies
93+
working-directory: website
94+
run: |
95+
npx license-checker --producation --excludePrivatePackages --csv > DEPENDENCIES.node.csv
96+
git diff --exit-code
97+
5698
check_docs:
5799
runs-on: ubuntu-latest
58100
steps:

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DEPENDENCIES.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# OpenDAL Dependencies
2+
3+
Please visit every package's `DEPENDENCIES.md` for a full list of dependencies.
4+
5+
## Check
6+
7+
To check and generate dependencies list of any package of opendal, please run:
8+
9+
```bash
10+
python3 ./scripts/dependencies.py check
11+
```
12+
13+
## Generate
14+
15+
To update the dependencies list of every package, please run:
16+
17+
```bash
18+
python3 ./scripts/dependencies.py generate
19+
```

bin/oay/DEPENDENCIES.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Dependencies
2+
3+
Refer to [DEPENDENCIES.rust.tsv](DEPENDENCIES.rust.tsv) for full list.

0 commit comments

Comments
 (0)