mirror of
https://github.com/status-im/nim-codex.git
synced 2025-01-09 18:36:29 +00:00
29433bad9a
* Use http subscriptions instead of websocket for tests To work around this issue when subscriptions are inactive for more than 5 minutes: https://github.com/NomicFoundation/hardhat/issues/2053 Use 100 millisecond polling; default polling interval of 4 seconds is too close to the 5 second timeout for `check eventually`. * use .confirm(1) instead of confirm(0) confirm(0) doesn't wait at all, confirm(1) waits for the transaction to be mined * speed up partial payout integration test * update nim-ethers to version 0.10.0 includes fixes for http polling and .confirm() * fix timing of marketplace tests allow for a bit more time to withdraw funds * use .confirm(1) in marketplace tests to ensure that the transaction has been processed before continuing with the test * fix timing issue in validation unit test * fix proof integration test there were two logic errors in this test: - a slot is freed anyway at the end of the contract - when starting the request takes a long time, the first slot can already be freed because there were too many missing proofs * fix intermittent error in contract tests currentTime() doesn't always correctly reflect the time of the next transaction * reduce number of slots in integration test otherwise the windows runner in the CI won't be able to start the request before it expires * fix timing in purchasing test allow for a bit more time for a request to be submitted * fix timing of request submission in test windows ci is so slow, it can take up to 40 seconds just to submit a storage request to hardhat * increase proof period to 90 seconds * adjust timing of integration tests reason: with the increased period length of 90 seconds, it can take longer to wait for a stable challenge at the beginning of a period. * increase CI timeout to 2 hours * Fix slow builds on windows apparently it takes windows 2-3 seconds to resolve "localhost" to 127.0.0.1 for every json-rpc connection that we make 🤦
94 lines
2.7 KiB
YAML
94 lines
2.7 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 }}
|
|
|
|
## 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: Start 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 install
|
|
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} 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
|