-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into positive_tc_sprint-…
…1.13
- Loading branch information
Showing
9 changed files
with
260 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
name: "DEV-ST.DEVNET-0CHAIN.NET" | ||
run-name: "System tests [${{ github.ref_name }}] - [${{ github.event.head_commit.message }}]" | ||
concurrency: | ||
group: "system-tests-${{ github.ref }}-${{ github.event_name }}" | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: [ master, staging, sprint* ] | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
repo_snapshots_branch: | ||
description: 'branch of repo-snapshots to derive images and branches from.' | ||
default: 'current-sprint' | ||
required: true | ||
existing_network: | ||
description: '(OPTIONAL): *EXISTING NETWORK* to run system tests against *INSTEAD OF* deploying a new network. [example: dev.0chain.net]' | ||
default: '' | ||
required: false | ||
test_file_filter: | ||
description: 'Comma separated list of test files to run (eg. zwalletcli_send_and_balance_test.go). If supplied, the PR will NOT be notified of the test result' | ||
default: '' | ||
required: false | ||
run_smoke_tests: | ||
description: 'Only run smoke tests (subset of system tests for fast feedback)' | ||
default: 'false' | ||
required: false | ||
|
||
jobs: | ||
golangci: | ||
# if: github.event_name == 'push' | ||
name: "lint" | ||
runs-on: [ arc-runner ] | ||
steps: | ||
- name: Install Packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install build-essential nghttp2 libnghttp2-dev libssl-dev | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: '1.20' | ||
- uses: actions/checkout@v3 | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.52.2 | ||
skip-build-cache: true | ||
skip-pkg-cache: true | ||
only-new-issues: true | ||
|
||
ensure-master-is-green: | ||
# if: github.ref != 'refs/heads/master' | ||
name: "Ensure master is green" | ||
runs-on: arc-runner | ||
steps: | ||
- name: Check CI | ||
id: check-ci | ||
uses: 0chain/actions/get-build-state@master | ||
with: | ||
github_token: ${{ github.token }} | ||
repository: "0chain/system_test" | ||
sha: master | ||
- name: Success | ||
if: ${{ env.BUILD_STATE == 'success' }} | ||
run: echo "master is successful!" | ||
- name: Not Successful | ||
if: ${{ env.BUILD_STATE != 'success' }} | ||
run: | | ||
echo "master is NOT successful! was: [${{ env.BUILD_STATE }}]" | ||
exit 1 | ||
system-tests: | ||
name: "System Tests" | ||
runs-on: [ dev-st.devnet-0chain.net ] | ||
timeout-minutes: 150 | ||
steps: | ||
- name: "Get current PR" | ||
uses: jwalton/gh-find-current-pr@v1 | ||
id: findPr | ||
with: | ||
github-token: ${{ github.token }} | ||
|
||
- name: "Set PR status as pending" | ||
uses: 0chain/actions/set-pr-status@master | ||
if: steps.findPr.outputs.number && github.event.inputs.test_file_filter == '' | ||
with: | ||
pr_number: ${{ steps.findPr.outputs.pr }} | ||
description: "System tests running with default config..." | ||
state: "pending" | ||
repository: ${{ github.repository }} | ||
status_name: "0Chain System Tests" | ||
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
github_token: ${{ github.token }} | ||
|
||
- name: "Config: Run tests against existing 0Chain network" | ||
if: github.event_name == 'workflow_dispatch' && github.event.inputs.existing_network != '' | ||
run: | | ||
echo "NETWORK_URL=$(echo ${{ github.event.inputs.existing_network }})" >> $GITHUB_ENV | ||
echo "TEST_FILE_FILTER=$(echo $(([ -z '${{github.event.inputs.test_file_filter}}' ] && echo '') || echo '${{github.event.inputs.test_file_filter}}'))" >> $GITHUB_ENV | ||
echo "CURRENT_BRANCH=$(echo $(([ -z '${{ github.head_ref }}' ] && echo ${GITHUB_REF#refs/*/}) || echo '${{ github.head_ref }}'))" >> $GITHUB_ENV | ||
echo "REPO_SNAPSHOTS_BRANCH=$(echo $(([ -z '${{github.event.inputs.repo_snapshots_branch}}' ] && echo '<CURRENT BRANCH WITH FALLBACK TO CURRENT_SPRINT>') || echo '${{github.event.inputs.repo_snapshots_branch}}'))" >> $GITHUB_ENV | ||
- name: "Config: Deploy new 0Chain network then run tests against it" | ||
if: github.event_name == 'push' || github.event.inputs.existing_network == '' | ||
run: | | ||
echo "NETWORK_URL=$(echo dev-st.devnet-0chain.net)" >> $GITHUB_ENV | ||
echo "RUNNER_NUMBER=st" >> $GITHUB_ENV | ||
echo "TEST_FILE_FILTER=$(echo $(([ -z '${{github.event.inputs.test_file_filter}}' ] && echo '') || echo '${{github.event.inputs.test_file_filter}}'))" >> $GITHUB_ENV | ||
echo "CURRENT_BRANCH=$(echo $(([ -z '${{ github.head_ref }}' ] && echo ${GITHUB_REF#refs/*/}) || echo '${{ github.head_ref }}'))" >> $GITHUB_ENV | ||
echo "REPO_SNAPSHOTS_BRANCH=$(echo $(([ -z '${{github.event.inputs.repo_snapshots_branch}}' ] && echo '<CURRENT BRANCH WITH FALLBACK TO CURRENT_SPRINT>') || echo '${{github.event.inputs.repo_snapshots_branch}}'))" >> $GITHUB_ENV | ||
if [[ "${{github.event.inputs.run_smoke_tests}}" == 'true' ]]; | ||
then | ||
echo RUN_SMOKE_TESTS=true >> $GITHUB_ENV | ||
else | ||
echo RUN_SMOKE_TESTS=false >> $GITHUB_ENV | ||
fi | ||
- 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 }}${{ github.run_attempt }}", "description":"", "block_number": 18539779, "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" | ||
if: github.event_name == 'push' || github.event.inputs.existing_network == '' | ||
uses: 0chain/actions/deploy-0chain-dev-st@dev-st | ||
with: | ||
repo_snapshots_branch: "${{ env.REPO_SNAPSHOTS_BRANCH }}" | ||
kube_config: ${{ secrets[format('DEVSTKC', env.RUNNER_NUMBER)] }} | ||
teardown_condition: "TESTS_PASSED" | ||
SUBGRAPH_API_URL: ${{ secrets.SUBGRAPH_API_URL }} | ||
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/${{ env.TENDERLY_FORK_ID }} | ||
svc_account_secret: ${{ secrets.SVC_ACCOUNT_SECRET }} |
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
Oops, something went wrong.