Skip to content

Commit ad9c1fc

Browse files
Merge branch 'main' into fix-issue-2198
2 parents 384276f + 29fb98f commit ad9c1fc

488 files changed

Lines changed: 26355 additions & 28950 deletions

File tree

Some content is hidden

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

.github/services/webdav/0_nginx/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ runs:
3030
run: |
3131
cat << EOF >> $GITHUB_ENV
3232
OPENDAL_WEBDAV_ENDPOINT=http://127.0.0.1:8080
33+
OPENDAL_WEBDAV_ENABLE_CONDITIONAL_READ=false
3334
OPENDAL_TEST_CAPABILITY_OVERRIDES=write_with_user_metadata=false
3435
EOF

.github/services/webdav/nginx_with_empty_password/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ runs:
3131
cat << EOF >> $GITHUB_ENV
3232
OPENDAL_WEBDAV_ENDPOINT=http://127.0.0.1:8080
3333
OPENDAL_WEBDAV_USERNAME=foo
34+
OPENDAL_WEBDAV_ENABLE_CONDITIONAL_READ=false
3435
OPENDAL_TEST_CAPABILITY_OVERRIDES=write_with_user_metadata=false
3536
EOF

.github/services/webdav/nginx_with_password/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ runs:
3232
OPENDAL_WEBDAV_ENDPOINT=http://127.0.0.1:8080
3333
OPENDAL_WEBDAV_USERNAME=bar
3434
OPENDAL_WEBDAV_PASSWORD=bar
35+
OPENDAL_WEBDAV_ENABLE_CONDITIONAL_READ=false
3536
OPENDAL_TEST_CAPABILITY_OVERRIDES=write_with_user_metadata=false
3637
EOF

.github/services/webdav/nginx_with_redirect/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ runs:
3030
run: |
3131
cat << EOF >> $GITHUB_ENV
3232
OPENDAL_WEBDAV_ENDPOINT=http://127.0.0.1:8081
33+
OPENDAL_WEBDAV_ENABLE_CONDITIONAL_READ=false
3334
OPENDAL_TEST_CAPABILITY_OVERRIDES=write_with_user_metadata=false
3435
EOF

.github/workflows/ci_bindings_python.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,29 @@ jobs:
5050
working-directory: "bindings/python"
5151
run: just lint
5252

53+
stubs:
54+
runs-on: ubuntu-latest
55+
steps:
56+
- uses: actions/checkout@v6
57+
- name: Setup Rust toolchain
58+
uses: ./.github/actions/setup
59+
- name: Install uv
60+
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
61+
with:
62+
working-directory: "bindings/python"
63+
- uses: taiki-e/install-action@just
64+
- name: Setup taplo
65+
uses: taiki-e/install-action@v2
66+
with:
67+
tool: taplo-cli
68+
- name: Setup hawkeye
69+
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/korandoru/hawkeye/releases/download/v6.5.1/hawkeye-installer.sh | sh
70+
- name: Regenerate stubs
71+
working-directory: "bindings/python"
72+
run: just stub-gen
73+
- name: Check diff
74+
run: git diff --exit-code
75+
5376
examples:
5477
runs-on: ubuntu-latest
5578
steps:

.github/workflows/ci_check.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,26 +102,29 @@ jobs:
102102

103103
website-dependencies:
104104
runs-on: ubuntu-latest
105+
defaults:
106+
run:
107+
working-directory: website
108+
105109
steps:
106110
- uses: actions/checkout@v6
107111

108112
- uses: pnpm/action-setup@v6
109113
with:
110-
version: 8
114+
# Follow website/package.json packageManager field
115+
version: 11.8.0
111116
run_install: false
112117

113118
- uses: actions/setup-node@v6
114119
with:
115-
node-version: "20"
120+
node-version-file: "website/.node-version"
116121
cache: pnpm
117122
cache-dependency-path: "website/pnpm-lock.yaml"
118123

119124
- name: Install Dependencies
120-
working-directory: website
121125
run: pnpm install --frozen-lockfile
122126

123127
- name: Check dependencies
124-
working-directory: website
125128
run: |
126129
npx license-checker --production --excludePrivatePackages --csv > DEPENDENCIES.node.csv
127130
git diff --exit-code

0 commit comments

Comments
 (0)