fix: increase CI timeouts to 90m and exclude wasm-dependent doc-test
Cold cache builds exceed 45m limit. Also exclude pezsc-basic-authorship from doc-tests as it requires wasm binary (incompatible with SKIP_WASM_BUILD).
This commit is contained in:
@@ -25,7 +25,7 @@ jobs:
|
|||||||
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
||||||
needs: [preflight]
|
needs: [preflight]
|
||||||
if: ${{ needs.preflight.outputs.changes_rust }}
|
if: ${{ needs.preflight.outputs.changes_rust }}
|
||||||
timeout-minutes: 45
|
timeout-minutes: 90
|
||||||
container:
|
container:
|
||||||
image: ${{ needs.preflight.outputs.IMAGE }}
|
image: ${{ needs.preflight.outputs.IMAGE }}
|
||||||
volumes:
|
volumes:
|
||||||
@@ -57,7 +57,7 @@ jobs:
|
|||||||
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
||||||
needs: [preflight, cargo-clippy]
|
needs: [preflight, cargo-clippy]
|
||||||
if: ${{ always() && !cancelled() && needs.preflight.outputs.changes_rust }}
|
if: ${{ always() && !cancelled() && needs.preflight.outputs.changes_rust }}
|
||||||
timeout-minutes: 45
|
timeout-minutes: 90
|
||||||
container:
|
container:
|
||||||
image: ${{ needs.preflight.outputs.IMAGE }}
|
image: ${{ needs.preflight.outputs.IMAGE }}
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ jobs:
|
|||||||
|
|
||||||
test-doc:
|
test-doc:
|
||||||
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
||||||
timeout-minutes: 45
|
timeout-minutes: 90
|
||||||
needs: [preflight]
|
needs: [preflight]
|
||||||
container:
|
container:
|
||||||
image: ${{ needs.preflight.outputs.IMAGE }}
|
image: ${{ needs.preflight.outputs.IMAGE }}
|
||||||
@@ -42,11 +42,11 @@ jobs:
|
|||||||
id: required
|
id: required
|
||||||
run: |
|
run: |
|
||||||
git config --global --add safe.directory '*'
|
git config --global --add safe.directory '*'
|
||||||
cargo test --doc --workspace --locked --all-features --exclude pezkuwi-zombienet-sdk-tests
|
cargo test --doc --workspace --locked --all-features --exclude pezkuwi-zombienet-sdk-tests --exclude pezsc-basic-authorship
|
||||||
|
|
||||||
build-rustdoc:
|
build-rustdoc:
|
||||||
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
runs-on: ${{ needs.preflight.outputs.RUNNER }}
|
||||||
timeout-minutes: 45
|
timeout-minutes: 90
|
||||||
if: ${{ always() && !cancelled() && needs.preflight.outputs.changes_rust }}
|
if: ${{ always() && !cancelled() && needs.preflight.outputs.changes_rust }}
|
||||||
needs: [preflight, test-doc]
|
needs: [preflight, test-doc]
|
||||||
container:
|
container:
|
||||||
|
|||||||
Reference in New Issue
Block a user