Skip to content

Commit

Permalink
disable test
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam committed Oct 14, 2024
1 parent cb86379 commit ed2ffe8
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,32 @@ jobs:
preflight:
uses: ./.github/workflows/reusable-preflight.yml

test-rustdoc:
runs-on: ${{ needs.preflight.outputs.RUNNER }}
if: ${{ needs.preflight.outputs.changes_rust }}
needs: [preflight]
container:
image: ${{ needs.preflight.outputs.IMAGE }}
steps:
- uses: actions/checkout@v4
- run: forklift cargo doc --workspace --all-features --no-deps
env:
SKIP_WASM_BUILD: 1
test-doc:
runs-on: ${{ needs.preflight.outputs.RUNNER }}
needs: [preflight]
container:
image: ${{ needs.preflight.outputs.IMAGE }}
steps:
- uses: actions/checkout@v4
- run: forklift cargo test --doc --workspace
env:
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
# test-rustdoc:
# runs-on: ${{ needs.preflight.outputs.RUNNER }}
# if: ${{ needs.preflight.outputs.changes_rust }}
# needs: [preflight]
# container:
# image: ${{ needs.preflight.outputs.IMAGE }}
# steps:
# - uses: actions/checkout@v4
# - run: forklift cargo doc --workspace --all-features --no-deps
# env:
# SKIP_WASM_BUILD: 1
# test-doc:
# runs-on: ${{ needs.preflight.outputs.RUNNER }}
# needs: [preflight]
# container:
# image: ${{ needs.preflight.outputs.IMAGE }}
# steps:
# - uses: actions/checkout@v4
# - run: forklift cargo test --doc --workspace
# env:
# RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"

build-rustdoc:
runs-on: ${{ needs.preflight.outputs.RUNNER }}
if: ${{ needs.preflight.outputs.changes_rust }}
needs: [preflight, test-rustdoc]
needs: [preflight] #, test-rustdoc]
container:
image: ${{ needs.preflight.outputs.IMAGE }}
steps:
Expand Down

0 comments on commit ed2ffe8

Please sign in to comment.