From 055e40467f7561c4bb51542bc500819d58aabc52 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Mon, 8 May 2023 19:05:44 +0200 Subject: [PATCH] github actions: Disable pexpect for ASAN for now This fails basically every commit, just by blowing the time budget. --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23716cff0..fc1f1f6c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -94,7 +94,9 @@ jobs: - name: Install deps run: | sudo apt install gettext libncurses5-dev libpcre2-dev python3-pip tmux - sudo pip3 install pexpect + # Don't install pexpect here because this constantly blows the time budget. + # Try again once the rust port is done and we're hopefully not as slow anymore. + # sudo pip3 install pexpect - name: cmake env: CC: clang