-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: implement fork per run strategy (#553)
* feature: added fork creation * fix: fixed bug * feature: improved Tenderly fork creation flow
- Loading branch information
1 parent
cc56e53
commit 69ee851
Showing
2 changed files
with
96 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,90 @@ jobs: | |
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
github_token: ${{ github.token }} | ||
|
||
- name: 'Setup jq' | ||
uses: dcarbone/[email protected] | ||
with: | ||
version: '1.7' | ||
force: 'false' | ||
|
||
- name: "Create Tenderly fork" | ||
run: | | ||
echo "TENDERLY_CREATION_INFO=$(curl -X POST \ | ||
-H "x-access-key: ${{ secrets.TENDERLY_SECRET }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{"alias":"mainnet-dev-${{ env.RUNNER_NUMBER }}-${{ github.run_id }}", "description":"", "network_id":"1"}' \ | ||
https://api.tenderly.co/api/v1/account/zus_network/project/project/fork)" >> $GITHUB_ENV | ||
- name: "Parse Tenderly fork creation transaction result" | ||
run: | | ||
echo "TENDERLY_FORK_ID=$(echo '${{ env.TENDERLY_CREATION_INFO }}' | jq -r '.simulation_fork.id')" >> $GITHUB_ENV | ||
echo "TENDERLY_ROOT_TRANSACTION_ID=$(echo '${{ env.TENDERLY_CREATION_INFO }}' | jq -r '.root_transaction.id')" >> $GITHUB_ENV | ||
- name: "Retrieve Tenderly fork block number" | ||
run: | | ||
echo "TENDERLY_FORK_BLOCK_NUMBER=$(curl -X GET \ | ||
-H "x-access-key: ${{ secrets.TENDERLY_SECRET }}" \ | ||
-H "Content-Type: application/json" \ | ||
https://api.tenderly.co/api/v1/network/1/block-number | jq -r '.block_number')" >> $GITHUB_ENV | ||
echo "TENDERLY_FORK_BLOCK_NUMBER=$((${{ env.TENDERLY_FORK_BLOCK_NUMBER }} + 1))" >> GITHUB_ENV | ||
- name: "Transfer Bridge ownership in Tenderly fork" | ||
run: | | ||
echo "TENDERLY_ROOT_TRANSACTION_ID=$(curl -X POST \ | ||
-H "x-access-key: ${{ secrets.TENDERLY_SECRET }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{ | ||
"network_id": "1", | ||
"block_number": ${{ env.TENDERLY_FORK_BLOCK_NUMBER }}, | ||
"transaction_index": null, | ||
"from": "0xed8f3170db6d1a71c8fa6d8d73cc2c51db95d5a4", | ||
"input": "0xf2fde38b0000000000000000000000008e25cfd9bd6c0ca67a5522cd920b3c66d39d6e97", | ||
"to": "0x7700d773022b19622095118fadf46f7b9448be9b", | ||
"gas": 8000000, | ||
"gas_price": "0", | ||
"value": "0", | ||
"access_list": [], | ||
"generate_access_list": true, | ||
"save": true, | ||
"source": "dashboard", | ||
"block_header": null, | ||
"root": "${{ env.TENDERLY_ROOT_TRANSACTION_ID }}", | ||
"skip_fork_head_update": false, | ||
"alias": "", | ||
"description": "Transfer ownership to 0x8E25cfd9bd6c0ca67a5522cd920b3c66D39d6E97" | ||
}' \ | ||
https://api.tenderly.co/api/v1/account/zus_network/project/project/fork/${{ env.TENDERLY_FORK_ID }}/simulate | jq -r '.simulation.id')" >> $GITHUB_ENV | ||
echo "TENDERLY_FORK_BLOCK_NUMBER=$((${{ env.TENDERLY_FORK_BLOCK_NUMBER }} + 1))" >> GITHUB_ENV | ||
- name: "Transfer Authorizers ownership in Tenderly fork" | ||
run: | | ||
curl -X POST \ | ||
-H "x-access-key: ${{ secrets.TENDERLY_SECRET }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{ | ||
"network_id": "1", | ||
"block_number": ${{ env.TENDERLY_FORK_BLOCK_NUMBER }}, | ||
"transaction_index": null, | ||
"from": "0xed8f3170db6d1a71c8fa6d8d73cc2c51db95d5a4", | ||
"input": "0xf2fde38b0000000000000000000000008e25cfd9bd6c0ca67a5522cd920b3c66d39d6e97", | ||
"to": "0x481dab4407b9880de0a68dc62e6af611c4949e42", | ||
"gas": 8000000, | ||
"gas_price": "0", | ||
"value": "0", | ||
"access_list": [], | ||
"generate_access_list": true, | ||
"save": true, | ||
"source": "dashboard", | ||
"block_header": null, | ||
"root": "${{ env.TENDERLY_ROOT_TRANSACTION_ID }}", | ||
"skip_fork_head_update": false, | ||
"alias": "", | ||
"description": "Transfer ownership to 0x8E25cfd9bd6c0ca67a5522cd920b3c66D39d6E97" | ||
}' \ | ||
https://api.tenderly.co/api/v1/account/zus_network/project/project/fork/${{ env.TENDERLY_FORK_ID }}/simulate | ||
- name: "Deploy 0Chain" | ||
uses: 0chain/actions/deploy-0chain@master | ||
with: | ||
|
@@ -97,10 +181,10 @@ jobs: | |
teardown_condition: "TESTS_PASSED" | ||
zbox_cli_branch: ${{ env.CURRENT_BRANCH }} | ||
SUBGRAPH_API_URL: ${{ secrets.SUBGRAPH_API_URL }} | ||
TENDERLY_FORK_ID: ${{ secrets.TENDERLY_FORK_ID }} | ||
TENDERLY_FORK_ID: ${{ env.TENDERLY_FORK_ID }} | ||
graphnode_sc: ${{ secrets.GRAPHNODE_SC }} | ||
graphnode_network: ${{ secrets.GRAPHNODE_NETWORK }} | ||
graphnode_ethereum_node_url: https://rpc.tenderly.co/fork/${{ secrets.TENDERLY_FORK_ID }} | ||
graphnode_ethereum_node_url: https://rpc.tenderly.co/fork/${{ env.TENDERLY_FORK_ID }} | ||
svc_account_secret: ${{ secrets.SVC_ACCOUNT_SECRET }} | ||
|
||
- name: "Run System tests" | ||
|
@@ -114,12 +198,20 @@ jobs: | |
archive_results: true | ||
run_flaky_tests: false | ||
retry_failures: true | ||
TENDERLY_FORK_ID: ${{ secrets.TENDERLY_FORK_ID }} | ||
TENDERLY_FORK_ID: ${{ env.TENDERLY_FORK_ID }} | ||
DEVOPS_CHANNEL_WEBHOOK_URL: ${{ secrets.DEVOPS_CHANNEL_WEBHOOK_URL }} | ||
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | ||
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | ||
run_smoke_tests: ${{ github.ref != 'refs/heads/staging' && github.base_ref != 'staging' && github.ref != 'refs/heads/master' && github.base_ref != 'master' }} | ||
|
||
- name: "Remove Tenderly fork" | ||
if: always() | ||
run: | | ||
curl -X DELETE \ | ||
-H "x-access-key: ${{ secrets.TENDERLY_SECRET }}" \ | ||
-H "Content-Type: application/json" \ | ||
https://api.tenderly.co/api/v1/account/zus_network/project/project/fork/${{ env.TENDERLY_FORK_ID }} | ||
- name: "Set PR status as ${{ job.status }}" | ||
if: ${{ (success() || failure()) && steps.findPr.outputs.number }} | ||
uses: 0chain/actions/set-pr-status@master | ||
|