Skip to content

Commit 4cf8f5a

Browse files
authored
Disable conditional checks in CI workflow
Removed conditional checks for prebuild and compile jobs in CI workflow.
1 parent 0f1e222 commit 4cf8f5a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Pre-build checks
1414
runs-on: ubuntu-22.04
1515
timeout-minutes: 30
16-
if: |
16+
if: false &&
1717
github.event.action != 'edited' ||
1818
contains(github.event.pull_request.body, 'Changelog')
1919
env:
@@ -90,6 +90,7 @@ jobs:
9090

9191
compile:
9292
name: Compile CLN ${{ matrix.cfg }}
93+
if: false
9394
runs-on: ubuntu-22.04
9495
timeout-minutes: 30
9596
needs:
@@ -316,8 +317,6 @@ jobs:
316317
env:
317318
RUST_PROFILE: release # Has to match the one in the compile step
318319
PYTEST_OPTS: --timeout=1200 --durations=10
319-
needs:
320-
- compile
321320
strategy:
322321
fail-fast: false
323322
matrix:

0 commit comments

Comments
 (0)