Merge pull request #10686

1088570 tests: avoid null argv in program options setup (selsta)
9f6ffb5 workflows: speed up slow-hash in PR core_tests (selsta)
This commit is contained in:
tobtoht
2026-06-01 20:13:12 +00:00
3 changed files with 30 additions and 15 deletions
+22 -11
View File
@@ -186,9 +186,9 @@ jobs:
fail-fast: false
matrix:
include:
# Most popular Ubuntu LTS version
- name: Ubuntu 24.04
container: ubuntu:24.04
# Oldest supported Ubuntu LTS version
- name: Ubuntu 22.04
container: ubuntu:22.04
container:
image: ${{ matrix.container }}
env:
@@ -234,9 +234,9 @@ jobs:
strategy:
matrix:
include:
# Oldest supported Ubuntu LTS version
- name: Ubuntu 22.04
container: ubuntu:22.04
# Most popular Ubuntu LTS version
- name: Ubuntu 24.04
container: ubuntu:24.04
container:
image: ${{ matrix.container }}
env:
@@ -256,7 +256,7 @@ jobs:
- name: install pip
run: apt install -y python3-pip
- name: install Python dependencies
run: pip install requests psutil monotonic zmq deepdiff
run: python3 -m pip install --break-system-packages requests psutil monotonic zmq deepdiff
- name: configure git
run: git config --global --add safe.directory '*'
- uses: actions/checkout@v5
@@ -272,15 +272,26 @@ jobs:
- name: create dummy disk drives for testing
run: tests/create_test_disks.sh >> $GITHUB_ENV
- uses: ./.github/actions/set-make-job-count
- name: tests
- name: build
env:
CTEST_OUTPUT_ON_FAILURE: ON
DNS_PUBLIC: tcp://9.9.9.9
CMAKE_BUILD_PARALLEL_LEVEL: ${{env.MAKE_JOB_COUNT}}
run: |
${{env.CCACHE_SETTINGS}}
${{env.BUILD_DEFAULT}}
cmake --build build --target test
- name: run tests except core_tests
env:
DNS_PUBLIC: tcp://9.9.9.9
run: ctest --test-dir build --output-on-failure -E core_tests
- name: use reduced slow-hash iterations for core_tests
if: github.event_name == 'pull_request'
env:
CFLAGS: -DMONERO_CRYPTO_SLOW_HASH_ITER=20
CMAKE_BUILD_PARALLEL_LEVEL: ${{env.MAKE_JOB_COUNT}}
run: |
cmake -S . -B build --fresh -D ARCH="default" -D BUILD_TESTS=ON
cmake --build build --target core_tests
- name: run core_tests
run: ctest --test-dir build --output-on-failure -R core_tests
- name: save ccache
uses: actions/cache/save@v5
if: github.event_name != 'pull_request' && steps.ccache-restore.outputs.cache-hit != 'true'