Skip to content

Commit

Permalink
Update CI scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
yarkinwho committed Dec 6, 2023
1 parent 0f106de commit 5fb8dcc
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
integration-test:
name: EOS EVM Integration Tests
needs: [d, build]
if: always() && needs.d.result == 'success' && needs.build.result == 'success' && needs.versions.result == 'success'
if: always() && needs.d.result == 'success' && needs.build.result == 'success'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -157,6 +157,30 @@ jobs:
cd test_run_root
${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/cmd/test/rpcdaemon_test
- name: Test core_test
run: |
mkdir test_run_root
cd test_run_root
${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/cmd/test/core_test
- name: Test infra_test
run: |
mkdir test_run_root
cd test_run_root
${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/cmd/test/infra_test
- name: Test node_test
run: |
mkdir test_run_root
cd test_run_root
${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/cmd/test/node_test
- name: Test sync_test
run: |
mkdir test_run_root
cd test_run_root
${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/cmd/test/sync_test
- name: Prepare Logs
if: failure()
run: |
Expand Down

0 comments on commit 5fb8dcc

Please sign in to comment.