mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-24 00:18:23 +00:00
DEBUG -> enables DebugCodexNodes, DebugTestHarness, and ShowContinuousStatusUpdates DEBUG_HARDHAT -> enables DebugHardhat PARALLEL -> enables EnableParallelTests Additionally, when DEBUG is enabled, all integration tests debug configs are enabled for Codex nodes, the Codex node output is printed with the test output (not interleaved), and the Codex node output is logged to file in `tests/integrations/logs/<starttime>__IntegrationTests/<integration_test_name>/<suite_name>/<testname>/<role>_<idx>.log`. When DEBUG_HARDHAT is enabled, all hardhat output is printed with the test output (not interleaved), and the output is also written to a log file in `tests/integrations/logs/<starttime>__IntegrationTests/<integration_test_name>/hardhat.log
106 lines
3.2 KiB
YAML
106 lines
3.2 KiB
YAML
name: Reusable - CI
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
matrix:
|
|
type: string
|
|
cache_nonce:
|
|
default: '0'
|
|
description: Allows for easily busting actions/cache caches
|
|
required: false
|
|
type: string
|
|
|
|
env:
|
|
cache_nonce: ${{ inputs.cache_nonce }}
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
include: ${{ fromJson(inputs.matrix) }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: ${{ matrix.shell }} {0}
|
|
|
|
name: ${{ matrix.os }}-${{ matrix.tests }}-${{ matrix.cpu }}-${{ matrix.nim_version }}
|
|
runs-on: ${{ matrix.builder }}
|
|
timeout-minutes: 120
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Setup Nimbus Build System
|
|
uses: ./.github/actions/nimbus-build-system
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
shell: ${{ matrix.shell }}
|
|
nim_version: ${{ matrix.nim_version }}
|
|
coverage: false
|
|
|
|
## Part 1 Tests ##
|
|
- name: Unit tests
|
|
if: matrix.tests == 'unittest' || matrix.tests == 'all'
|
|
run: make -j${ncpu} test
|
|
|
|
# workaround for https://github.com/NomicFoundation/hardhat/issues/3877
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18.15
|
|
|
|
- name: Install Ethereum node dependencies
|
|
if: matrix.tests == 'contract' || matrix.tests == 'integration' || matrix.tests == 'tools' || matrix.tests == 'all'
|
|
working-directory: vendor/codex-contracts-eth
|
|
env:
|
|
MSYS2_PATH_TYPE: inherit
|
|
run: |
|
|
npm install
|
|
|
|
- name: Run Ethereum node with Codex contracts
|
|
if: matrix.tests == 'contract' || matrix.tests == 'integration' || matrix.tests == 'tools' || matrix.tests == 'all'
|
|
working-directory: vendor/codex-contracts-eth
|
|
env:
|
|
MSYS2_PATH_TYPE: inherit
|
|
run: |
|
|
npm start &
|
|
|
|
## Part 2 Tests ##
|
|
- name: Contract tests
|
|
if: matrix.tests == 'contract' || matrix.tests == 'all'
|
|
run: make -j${ncpu} testContracts
|
|
|
|
## Part 3 Tests ##
|
|
- name: Integration tests
|
|
if: matrix.tests == 'integration' || matrix.tests == 'all'
|
|
run: make -j${ncpu} ENABLE_PARALLEL_TESTS=0 testIntegration
|
|
|
|
- name: Parallel integration tests
|
|
if: matrix.tests == 'integration-parallel'
|
|
run: make -j${ncpu} DEBUG=1 testIntegration
|
|
|
|
- name: Upload integration tests log files
|
|
uses: actions/upload-artifact@v4
|
|
if: (matrix.tests == 'integration' || matrix.tests == 'all') && always()
|
|
with:
|
|
name: ${{ matrix.os }}-${{ matrix.cpu }}-${{ matrix.nim_version }}-integration-tests-logs
|
|
path: tests/integration/logs/
|
|
retention-days: 1
|
|
|
|
## Part 4 Tools ##
|
|
- name: Tools tests
|
|
if: matrix.tests == 'tools' || matrix.tests == 'all'
|
|
run: make -j${ncpu} testTools
|
|
|
|
status:
|
|
if: always()
|
|
needs: [build]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}
|
|
run: exit 1
|