Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
ctest --verbose -S \
./scripts/build-unit-test.cmake \
-DCTEST_SOURCE_DIRECTORY=./bitcoin \
-DBUILD_NAME_SUFFIX=${{ matrix.config }}-${{ inputs.ctest_build_name_suffix }} \
-DBUILD_NAME_SUFFIX=${{ matrix.config }}--${{ inputs.ctest_build_name_suffix }} \
${{ matrix.ctest_extra }} \
-DCMAKE_ARGS='${{ matrix.cmake_flags }}' \
-DMODEL=${{ inputs.ctest_model }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Nightly Build and Test

on:
schedule:
- cron: '0 11 * * *' # Run everyday at 11.00 am UTC
- cron: '0 7 * * *' # Run everyday at 07.00 am UTC
workflow_dispatch:

jobs:
Expand All @@ -11,3 +11,4 @@ jobs:
uses: ./.github/workflows/ci.yml
with:
ctest_model: Nightly
ctest_build_name_suffix: master
2 changes: 1 addition & 1 deletion scripts/build-unit-test.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ endif()

# Nightly start time
if(MODEL STREQUAL "Nightly" )
set(CTEST_NIGHTLY_START_TIME "11:00:00 UTC")
set(CTEST_NIGHTLY_START_TIME "7:00:00 UTC")
endif()

# Start CTest process
Expand Down
Loading