summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAndrew V. Jones <andrew.jones@vector.com>2020-07-17 18:09:14 +0100
committerGitHub <noreply@github.com>2020-07-17 10:09:14 -0700
commite8df6f67cc2654f50d49995377a4b411668235e1 (patch)
treefb8c2b35197e5821ac15c78b74da0d2de8eec3fc /.github
parent0988217562006d3f59e01dc261f39121df6d75f5 (diff)
Support for using 'libedit' over 'readline' #4571 (#4579)
Signed-off-by: Andrew V. Jones <andrew.jones@vector.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7dd080f71..e9587e2e6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
include:
- name: production
- config: production --all-bindings --lfsc
+ config: production --all-bindings --lfsc --editline
cache-key: production
python-bindings: true
check-examples: true
@@ -28,7 +28,7 @@ jobs:
env: CC=clang CXX=clang++
- name: debug
- config: debug --symfpu --lfsc --no-debug-symbols
+ config: debug --symfpu --lfsc --no-debug-symbols --editline
cache-key: debug
- name: debug-cln
@@ -51,11 +51,14 @@ jobs:
cxxtest \
libcln-dev \
libgmp-dev \
+ libedit-dev \
swig3.0
python3 -m pip install toml
python3 -m pip install setuptools
+ python3 -m pip install pexpect
echo "::add-path::/usr/lib/ccache"
+ # Note: macOS comes with a libedit; it does not need to brew-installed
- name: Install Packages (macOS)
if: runner.os == 'macOS'
run: |
@@ -67,6 +70,7 @@ jobs:
swig
python3 -m pip install toml
python3 -m pip install setuptools
+ python3 -m pip install pexpect
echo "::add-path::/usr/local/opt/ccache/libexec"
# Note: We install Cython with sudo since cmake can't find Cython otherwise.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback