mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-15 20:09:18 +01:00
ci: Add GENERATE_EXAMPLES
env in CI & docker build script
This commit is contained in:
parent
b8b4e7c7fd
commit
0a7956b6d4
2 changed files with 5 additions and 2 deletions
6
.github/workflows/ci.yaml
vendored
6
.github/workflows/ci.yaml
vendored
|
@ -24,8 +24,6 @@ jobs:
|
|||
timeout-minutes: 30
|
||||
env:
|
||||
BOLTDIR: bolts
|
||||
VALGRIND: 0
|
||||
PYTEST_OPTS: --timeout=1200
|
||||
strategy:
|
||||
fail-fast: true
|
||||
steps:
|
||||
|
@ -87,6 +85,10 @@ jobs:
|
|||
- name: Configure
|
||||
run: ./configure --enable-debugbuild --enable-rust
|
||||
- name: Check source
|
||||
env:
|
||||
VALGRIND: 0
|
||||
GENERATE_EXAMPLES: 1
|
||||
PYTEST_OPTS: --timeout=1200
|
||||
run: make check-source BASE_REF="origin/${{ github.base_ref }}"
|
||||
- name: Check Generated Files have been updated
|
||||
run: make check-gen-updated
|
||||
|
|
|
@ -18,6 +18,7 @@ export TIMEOUT=900
|
|||
export VALGRIND=${VALGRIND:-0}
|
||||
export FUZZING=${FUZZING:-0}
|
||||
export LIGHTNINGD_POSTGRES_NO_VACUUM=1
|
||||
export GENERATE_EXAMPLES=${GENERATE_EXAMPLES:-0}
|
||||
|
||||
pip3 install --upgrade pip
|
||||
pip3 install --user poetry
|
||||
|
|
Loading…
Add table
Reference in a new issue