ci: fix debug_traceTransaction pattern in perf tests (#2879) #4114
This file contains hidden or 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
name: Windows | |
on: | |
push: | |
branches: | |
- master | |
- 'ci/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
windows: | |
runs-on: windows-latest | |
# Disable on external PRs | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository | |
strategy: | |
matrix: | |
config: | |
- {build_type: "Release"} | |
fail-fast: false # This makes it so that if 1 of the tests in the matrix fail, they don't all fail | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: "0" | |
- name: Install Conan | |
id: conan | |
uses: turtlebrowser/get-conan@main | |
with: | |
version: 2.10.2 | |
- name: Create Build Environment | |
# Some projects don't allow in-source building, so create a separate build directory | |
# We'll use this as our working directory for all subsequent commands | |
run: cmake -E make_directory C:\build | |
- name: Configure CMake | |
working-directory: C:\build | |
run: cmake ${{runner.workspace}}\silkworm -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} | |
- name: Build unit tests | |
working-directory: C:\build | |
run: cmake --build . --config ${{ matrix.config.build_type }} --target all_unit_tests -j 1 | |
- name: Build Ethereum EL tests | |
working-directory: C:\build | |
run: cmake --build . --config ${{ matrix.config.build_type }} --target ethereum -j 2 | |
- name: Smoke tests | |
run: cmake -DSILKWORM_BUILD_DIR=C:\build -P cmake\run_smoke_tests.cmake | |
# Disabled after https://github.com/erigontech/silkworm/issues/2083 | |
- name: Unit tests | |
if: false | |
run: cmake -DSILKWORM_BUILD_DIR=C:\build -P cmake\run_unit_tests.cmake | |
# Disabled after https://github.com/erigontech/silkworm/issues/2083 | |
- name: Ethereum EL tests | |
if: false | |
working-directory: C:\build | |
run: | | |
cmd/test/${{ matrix.config.build_type }}/ethereum --threads 4 |