Skip to content

Commit

Permalink
Merge pull request #213 from VenusProtocol/dont-run-in-parallel
Browse files Browse the repository at this point in the history
Dont run in parallel
  • Loading branch information
coreyar authored Dec 13, 2024
2 parents b2042fd + 34a25dd commit a491c58
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:
release-etherfi-promo:
runs-on: ubuntu-20.04
needs: [unit-test, lint]
needs: [unit-test, lint, release-cross-chain-governance]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
release-isolated-pools:
runs-on: ubuntu-20.04
needs: [unit-test, lint, integration-test-isolated-pools]
needs: [unit-test, lint, integration-test-isolated-pools, release-etherfi-promo]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
release-protocol-reserve:
runs-on: ubuntu-20.04
needs: [unit-test, lint]
needs: [unit-test, lint, release-isolated-pools]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
release-core-pool:
runs-on: ubuntu-20.04
needs: [unit-test, lint, integration-test-core-pool]
needs: [unit-test, lint, integration-test-core-pool, release-protocol-reserve]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
release-governance:
runs-on: ubuntu-20.04
needs: [unit-test, lint, integration-test-governance]
needs: [unit-test, lint, integration-test-governance, release-core-pool]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit a491c58

Please sign in to comment.