From f96dbafbd9807c9a691bbd2cef75e2c44861b344 Mon Sep 17 00:00:00 2001 From: Jia Hu Date: Sun, 17 Mar 2024 23:55:45 -0400 Subject: [PATCH] update configure and build tmux --- .github/workflows/ic.yml | 4 ++-- workflows/ci.yml | 36 ------------------------------------ 2 files changed, 2 insertions(+), 38 deletions(-) delete mode 100644 workflows/ci.yml diff --git a/.github/workflows/ic.yml b/.github/workflows/ic.yml index fd81b178..b7b416c2 100644 --- a/.github/workflows/ic.yml +++ b/.github/workflows/ic.yml @@ -22,12 +22,12 @@ jobs: # Prepare for build (for version control source) - name: Run autogen.sh (for version control) run: | - sh autogen.sh || echo "Skipping autogen.sh for release tarball build" + sh autogen.sh # Configure and Build tmux - name: Configure and Build tmux run: | - ./configure --disable-utf8proc + ./configure --enable-utf8proc make # Optionally, include additional steps for testing or installation diff --git a/workflows/ci.yml b/workflows/ci.yml deleted file mode 100644 index 7189c6d1..00000000 --- a/workflows/ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - # Install dependencies - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y libevent-dev ncurses-dev gcc make pkg-config byacc autoconf automake - - # Prepare for build (for version control source) - - name: Run autogen.sh (for version control) - run: | - sh autogen.sh || echo "Skipping autogen.sh for release tarball build" - - # Configure and Build tmux - - name: Configure and Build tmux - run: | - ./configure && make - - # Optionally, include additional steps for testing or installation - - name: Install tmux - run: | - sudo make install - - # Add additional steps for running tests if applicable.