@@ -3,26 +3,17 @@ name: Continuous Integration
33on :
44 push :
55 branches :
6- - " master"
7- pull_request :
8- types : [opened, synchronize, edited]
6+ - " test-v*"
97concurrency :
108 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
119 cancel-in-progress : true
1210
13- env :
14- # Makes the upload-artifact work more reliably at the cost
15- # of a bit of compile time.
16- RUST_PROFILE : release
17- SLOW_MACHINE : 1
18- CI_SERVER_URL : " http://35.239.136.52:3170"
19-
2011jobs :
2112 prebuild :
2213 name : Pre-build checks
2314 runs-on : ubuntu-22.04
2415 timeout-minutes : 30
25- if : |
16+ if : false &&
2617 github.event.action != 'edited' ||
2718 contains(github.event.pull_request.body, 'Changelog')
2819 env :
9990
10091 compile :
10192 name : Compile CLN ${{ matrix.cfg }}
93+ if : false
10294 runs-on : ubuntu-22.04
10395 timeout-minutes : 30
10496 needs :
@@ -166,6 +158,7 @@ jobs:
166158 # The unit test checks are not in the critical path (not dependent
167159 # on the integration tests), so run them with `valgrind`
168160 name : Run unit tests
161+ if : false
169162 runs-on : ubuntu-22.04
170163 timeout-minutes : 30
171164 env :
@@ -211,6 +204,7 @@ jobs:
211204
212205 check-fuzz :
213206 name : Run fuzz regression tests
207+ if : false
214208 runs-on : ubuntu-22.04
215209 needs :
216210 - prebuild
@@ -237,6 +231,7 @@ jobs:
237231
238232 check-downgrade :
239233 name : Check we can downgrade the node
234+ if : false
240235 runs-on : ubuntu-22.04
241236 needs :
242237 - compile
@@ -334,24 +329,24 @@ jobs:
334329 COMPILER : gcc
335330 TEST_NETWORK : regtest
336331 # While we're at it let's try to compile with clang
337- - NAME : clang
338- CFG : compile-clang
339- TEST_DB_PROVIDER : sqlite3
340- COMPILER : clang
341- TEST_NETWORK : regtest
332+ # - NAME: clang
333+ # CFG: compile-clang
334+ # TEST_DB_PROVIDER: sqlite3
335+ # COMPILER: clang
336+ # TEST_NETWORK: regtest
342337 # And of course we want to test postgres too
343- - NAME : postgres
344- CFG : compile-gcc
345- COMPILER : gcc
346- TEST_DB_PROVIDER : postgres
347- TEST_NETWORK : regtest
348- # And don't forget about elements (like cdecker did when
349- # reworking the CI...)
350- - NAME : liquid
351- CFG : compile-gcc
352- COMPILER : gcc
353- TEST_NETWORK : liquid-regtest
354- TEST_DB_PROVIDER : sqlite3
338+ # - NAME: postgres
339+ # CFG: compile-gcc
340+ # COMPILER: gcc
341+ # TEST_DB_PROVIDER: postgres
342+ # TEST_NETWORK: regtest
343+ # # And don't forget about elements (like cdecker did when
344+ # # reworking the CI...)
345+ # - NAME: liquid
346+ # CFG: compile-gcc
347+ # COMPILER: gcc
348+ # TEST_NETWORK: liquid-regtest
349+ # TEST_DB_PROVIDER: sqlite3
355350 # And dual funding!
356351 - NAME : dual-fund
357352 CFG : compile-gcc
@@ -425,6 +420,7 @@ jobs:
425420
426421 integration-valgrind :
427422 name : Valgrind Test CLN ${{ matrix.name }}
423+ if : false
428424 runs-on : ubuntu-22.04
429425 timeout-minutes : 120
430426 env :
@@ -495,6 +491,7 @@ jobs:
495491
496492 integration-sanitizers :
497493 name : Sanitizers Test CLN
494+ if : false
498495 runs-on : ubuntu-22.04
499496 timeout-minutes : 120
500497 env :
@@ -604,6 +601,7 @@ jobs:
604601
605602 min-btc-support :
606603 name : Test minimum supported BTC v${{ matrix.MIN_BTC_VERSION }} with ${{ matrix.NAME }}
604+ if : false
607605 runs-on : ubuntu-22.04
608606 timeout-minutes : 120
609607 env :
@@ -678,6 +676,7 @@ jobs:
678676
679677 check-flake :
680678 name : Check Nix Flake
679+ if : false
681680 runs-on : ubuntu-22.04
682681 strategy :
683682 fail-fast : true
@@ -708,7 +707,7 @@ jobs:
708707 - integration-sanitizers
709708 - min-btc-support
710709 - check-downgrade
711- if : ${{ always() }}
710+ if : false && ${{ always() }}
712711 steps :
713712 - name : Complete
714713 env :
0 commit comments