Skip to content

Commit

Permalink
devops: temporarily disable cargo publish dry-run check (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvauclair authored Dec 19, 2024
1 parent 2171370 commit 8e6f197
Showing 1 changed file with 18 additions and 18 deletions.
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'

0 comments on commit 8e6f197

Please sign in to comment.