Skip to content

Commit

Permalink
Minor fixes (#13)
Browse files Browse the repository at this point in the history
* Deploy Network
* Add Permissions
* Minor changes
* Concurrency change
* Destroy Network
* Minor changes
* Minor changes
* Fix commit sha
* Minor changes
* Add Tests
* Disable Tests temporarily
* Nightly Build
* Minor fixes
  • Loading branch information
bane authored Jan 19, 2024
1 parent 4c68b5e commit dd9180a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ on: # yamllint disable-line rule:truthy
description: Activate Bridge
type: boolean
required: true
secrets:
AWS_REGION:
required: true
AWS_ROLE_ARN:
required: true
VAULT_PASSWORD:
required: true

permissions:
id-token: write
Expand Down
31 changes: 17 additions & 14 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,28 @@ on: # yamllint disable-line rule:truthy
workflow_dispatch:

jobs:
build:
name: Build Blade
uses: ./.github/workflows/build.yml
tests:
name: Run Tests
uses: ./.github/workflows/tests.yml
needs: build
with:
unit-test: true
e2e-polybft-test: true
e2e-legacy-test: true
property-polybft-test: true
fuzz-test: true
# build:
# name: Build Blade
# uses: ./.github/workflows/build.yml
# tests:
# name: Run Tests
# uses: ./.github/workflows/tests.yml
# needs: build
# with:
# unit-test: true
# e2e-polybft-test: true
# e2e-legacy-test: true
# property-polybft-test: true
# fuzz-test: true
deploy_network:
name: Deploy nightly Network
uses: ./.github/workflows/deploy-network.yml
needs: build
with:
environment: nightly
block_gas_limit: "200000000"
block_time: "2"
is_bridge_active: true
secrets:
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_ROLE_ARN: ${{ secrets.AWS_ROLE_ARN }}
VAULT_PASSWORD: ${{ secrets.VAULT_PASSWORD }}

0 comments on commit dd9180a

Please sign in to comment.