Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 6 additions & 16 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ env: # Global defaults
MAKEJOBS: "-j10"
TEST_RUNNER_PORT_MIN: "14000" # Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
CI_FAILFAST_TEST_LEAVE_DANGLING: "1" # Cirrus CI does not care about dangling processes and setting this variable avoids killing the CI script itself on error
RUN_FUNCTIONAL_TESTS: false # Template Provider doesn't have its own functional tests

# A self-hosted machine(s) can be used via Cirrus CI. It can be configured with
# multiple users to run tasks in parallel. No sudo permission is required.
Expand Down Expand Up @@ -126,7 +125,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_arm.sh"

task:
name: 'CentOS, depends, gui'
name: 'CentOS, depends'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
Expand All @@ -135,7 +134,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_centos.sh"

task:
name: 'previous releases, depends DEBUG'
name: 'depends DEBUG'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
Expand All @@ -144,7 +143,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_previous_releases.sh"

task:
name: 'TSan, depends, no gui'
name: 'TSan, depends'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
Expand Down Expand Up @@ -173,25 +172,16 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"

task:
name: 'no IPC, i686, DEBUG'
name: 'i686, DEBUG'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
type: medium
env:
FILE_ENV: "./ci/test/00_setup_env_i686_no_ipc.sh"
FILE_ENV: "./ci/test/00_setup_env_i686.sh"

task:
name: 'no wallet, libbitcoinkernel'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
type: small
env:
FILE_ENV: "./ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh"

task:
name: 'macOS-cross, gui, no tests'
name: 'macOS-cross, no tests'
<< : *GLOBAL_TASK_TEMPLATE
persistent_worker:
labels:
Expand Down
93 changes: 0 additions & 93 deletions .github/ISSUE_TEMPLATE/bug.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/ISSUE_TEMPLATE/good_first_issue.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/gui_issue.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/ci-test-each-commit-exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def main():
"-DAPPEND_CFLAGS='-O3 -g2'",
"-DCMAKE_BUILD_TYPE=Debug",
"-DWERROR=ON",
"-DBUILD_BENCH=ON",
"-DBUILD_FUZZ_BINARY=ON",
"-DCMAKE_CXX_FLAGS=-Wno-error=unused-member-function",
])
Expand All @@ -51,14 +50,6 @@ def main():
"-j",
str(num_procs),
])
run([
sys.executable,
"./build/test/functional/test_runner.py",
"-j",
str(num_procs * 2),
"--combinedlogslen=99999999",
])


if __name__ == "__main__":
main()
Loading
Loading