-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: Update .github/workflows/rustdoc.yaml
in artichoke/boba
#159
Merged
lopopolo
merged 1 commit into
trunk
from
terraform/update-file-.github-workflows-rustdoc.yaml
Aug 8, 2022
Merged
chore: Update .github/workflows/rustdoc.yaml
in artichoke/boba
#159
lopopolo
merged 1 commit into
trunk
from
terraform/update-file-.github-workflows-rustdoc.yaml
Aug 8, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lopopolo
added a commit
that referenced
this pull request
Aug 7, 2022
`boba` has a required dependency on the `alloc` crate, but gates the availability of the `alloc` crate with the `alloc` feature. `boba` does not build with no default features as a result. The docs lead me to believe this was intentional, but with new CI steps in #159, all Artichoke crates must build and pass a docs build with no default features. This will require a semver major bump.
Merged
lopopolo
added a commit
that referenced
this pull request
Aug 8, 2022
`boba` has a required dependency on the `alloc` crate, but gates the availability of the `alloc` crate with the `alloc` feature. `boba` does not build with no default features as a result. The docs lead me to believe this was intentional, but with new CI steps in #159, all Artichoke crates must build and pass a docs build with no default features. This will require a semver major bump.
Blocked by: |
lopopolo
added a commit
that referenced
this pull request
Aug 8, 2022
`boba` has a required dependency on the `alloc` crate, but gates the availability of the `alloc` crate with the `alloc` feature. `boba` does not build with no default features as a result. The docs lead me to believe this was intentional, but with new CI steps in #159, all Artichoke crates must build and pass a docs build with no default features. This will require a semver major bump.
Managed by Terraform. ## Contents ``` --- name: Documentation "on": push: branches: - trunk pull_request: branches: - trunk schedule: - cron: "0 0 * * TUE" concurrency: group: docs-${{ github.head_ref }} jobs: rustdoc: name: Build Rust API docs runs-on: ubuntu-latest env: RUSTDOCFLAGS: -D warnings -D rustdoc::broken_intra_doc_links --cfg docsrs RUST_BACKTRACE: 1 steps: - name: Checkout repository uses: actions/checkout@v3 - name: Install nightly Rust toolchain run: | echo "::group::rustup toolchain install" rustup toolchain install nightly --profile minimal echo "::endgroup::" echo "::group::set default toolchain" rm -rf rust-toolchain rustup default nightly echo "::endgroup::" echo "::group::rustup version" rustup -Vv echo "::endgroup::" echo "::group::rustc version" rustc -Vv echo "::endgroup::" echo "::group::cargo version" cargo version --verbose echo "::endgroup::" - name: Check docs with no default features run: cargo doc --workspace --no-default-features - name: Clean docs run: cargo clean - name: Build Documentation run: cargo doc --workspace # artichoke/artichoke#1826 - name: Purge sources from out dir run: find . -path './target/doc/*/target/debug/build/*' | xargs rm -rf - name: Deploy Docs uses: peaceiris/actions-gh-pages@v3 if: github.ref == 'refs/heads/trunk' with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./target/doc publish_branch: gh-pages user_name: artichoke-ci user_email: [email protected] # only have the most recent docs in the `gh-pages` branch # artichoke/artichoke#1826 force_orphan: true ```
62e6d8f
to
00a1c3d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Managed by Terraform.
Contents