Skip to content

Commit

Permalink
chore(ci): move to dedicated Fabric runners (release-2.5)
Browse files Browse the repository at this point in the history
Utilize faster runners for verify CI jobs.

Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart committed Oct 27, 2023
1 parent e85ee9f commit c3b8221
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
basic-checks:
name: Basic Checks
runs-on: ubuntu-20.04
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand All @@ -31,7 +31,7 @@ jobs:
unit-tests:
name: Unit Tests
needs: basic-checks
runs-on: ubuntu-20.04
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand All @@ -50,7 +50,7 @@ jobs:
fail-fast: false
matrix:
INTEGRATION_TEST_SUITE: ["raft","pvtdata","ledger","lifecycle","e2e","discovery gossip devmode pluggable","gateway idemix pkcs11 configtx configtxlator","sbe nwo msp"]
runs-on: ubuntu-20.04
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-20.04' || 'ubuntu-20.04' }}
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand Down

0 comments on commit c3b8221

Please sign in to comment.