From 20100aabd54d507e01894993829b2968cee10f25 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 6 Jan 2025 14:18:08 -0600 Subject: [PATCH] ci: downgrade all workflows to ubuntu to 20.04 --- .github/workflows/code_coverage.yml | 2 +- .github/workflows/cont_integration.yml | 6 +++--- .github/workflows/nightly_docs.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 52bfb1ac..5be04684 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -14,7 +14,7 @@ jobs: Codecov: name: Code Coverage if: false # disabled - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: RUSTFLAGS: "-Cinstrument-coverage" RUSTDOCFLAGS: "-Cinstrument-coverage" diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index e1472f91..605997c3 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -14,7 +14,7 @@ jobs: build-test: name: Build and test - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: rust: @@ -77,7 +77,7 @@ jobs: test-readme-examples: name: Test README.md examples - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: checkout uses: actions/checkout@v4 @@ -167,7 +167,7 @@ jobs: fmt: name: Rust fmt - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/nightly_docs.yml b/.github/workflows/nightly_docs.yml index 9eef21ce..9301dad1 100644 --- a/.github/workflows/nightly_docs.yml +++ b/.github/workflows/nightly_docs.yml @@ -13,7 +13,7 @@ on: jobs: build_docs: name: Build docs - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout sources uses: actions/checkout@v4 @@ -43,7 +43,7 @@ jobs: name: 'Publish docs' if: github.ref == 'refs/heads/master' needs: [build_docs] - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout `bitcoindevkit.org` uses: actions/checkout@v4 -- 2.49.0