Skip to content

Commit

Permalink
ci: test on stable rust, not nightly (#115)
Browse files Browse the repository at this point in the history
* ci: test on stable rust, not nightly

* chore: remove some TODOs
  • Loading branch information
lklimek authored Nov 27, 2024
1 parent 3fd4d40 commit 4fba1f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches:
- master
- "build/docs-website" # TODO remove after it's merged

jobs:
cleanup-runs:
runs-on: ubuntu-latest
Expand All @@ -16,9 +16,6 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"

gh-pages:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/actions/deps
with:
toolchain: nightly
toolchain: stable

- name: Test tenderdash-proto
shell: bash
timeout-minutes: 6
run: cargo test --all-features -p tenderdash-proto -- -Zunstable-options --ensure-time
run: cargo test --all-features -p tenderdash-proto

- name: Test tenderdash-abci
shell: bash
Expand All @@ -45,7 +45,7 @@ jobs:
env:
RUSTFLAGS: "-Cinstrument-coverage"
LLVM_PROFILE_FILE: "%p-%m.profraw"
run: cargo test --all-features -p tenderdash-abci -- -Zunstable-options --ensure-time
run: cargo test --all-features -p tenderdash-abci

- name: Emit docker logs on error
if: failure()
Expand Down

0 comments on commit 4fba1f8

Please sign in to comment.