From ffa3158b772341ae6fcaccf645f8978e6d8bfd3c Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 27 Nov 2024 14:22:20 +0100 Subject: [PATCH 1/2] ci: test on stable rust, not nightly --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ecec2f6..054e3c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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() From 5885a2c05fcf7d9d103702b149706b6fc21720e3 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 27 Nov 2024 14:27:51 +0100 Subject: [PATCH 2/2] chore: remove some TODOs --- .github/workflows/github-pages.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index e3ad682..6c25adb 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -5,7 +5,7 @@ on: push: branches: - master - - "build/docs-website" # TODO remove after it's merged + jobs: cleanup-runs: runs-on: ubuntu-latest @@ -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