Skip to content

Commit

Permalink
change workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Fedor Partanskiy <pfi79@mail.ru>
  • Loading branch information
pfi79 authored and denyeart committed Oct 27, 2023
1 parent 45ebe47 commit cc640a5
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 @@ -21,7 +21,7 @@ permissions:
jobs:
basic-checks:
name: Basic Checks
runs-on: fabric-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 @@ -36,7 +36,7 @@ jobs:
unit-tests:
name: Unit Tests
needs: basic-checks
runs-on: fabric-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 @@ -55,7 +55,7 @@ jobs:
fail-fast: false
matrix:
INTEGRATION_TEST_SUITE: ["raft","pvtdata","pvtdatapurge","ledger","lifecycle","e2e smartbft","discovery gossip devmode pluggable","gateway idemix pkcs11 configtx configtxlator","sbe nwo msp"]
runs-on: fabric-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 cc640a5

Please sign in to comment.