Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

devops: temporarily disable cargo publish dry-run check #162

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,21 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings

publish-check:
name: stable / publish dry-run
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rust-docs

# Required to compile rig-lancedb
- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Run cargo publish --dry-run
run: find . | grep -v "target" | grep "\./.*/Cargo\.toml" | xargs -n 1 sh -c 'cargo publish --manifest-path $0 --dry-run || exit 255'
# publish-check:
# name: stable / publish dry-run
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Install Rust stable
# uses: actions-rust-lang/setup-rust-toolchain@v1
# with:
# components: rust-docs

# # Required to compile rig-lancedb
# - name: Install Protoc
# uses: arduino/setup-protoc@v3

# - name: Run cargo publish --dry-run
# run: find . | grep -v "target" | grep "\./.*/Cargo\.toml" | xargs -n 1 sh -c 'cargo publish --manifest-path $0 --dry-run || exit 255'
Loading