mirror of
https://github.com/tmux/tmux.git
synced 2024-11-14 16:18:48 +00:00
update configure and build tmux
This commit is contained in:
parent
273e7010e3
commit
f96dbafbd9
4
.github/workflows/ic.yml
vendored
4
.github/workflows/ic.yml
vendored
@ -22,12 +22,12 @@ jobs:
|
|||||||
# Prepare for build (for version control source)
|
# Prepare for build (for version control source)
|
||||||
- name: Run autogen.sh (for version control)
|
- name: Run autogen.sh (for version control)
|
||||||
run: |
|
run: |
|
||||||
sh autogen.sh || echo "Skipping autogen.sh for release tarball build"
|
sh autogen.sh
|
||||||
|
|
||||||
# Configure and Build tmux
|
# Configure and Build tmux
|
||||||
- name: Configure and Build tmux
|
- name: Configure and Build tmux
|
||||||
run: |
|
run: |
|
||||||
./configure --disable-utf8proc
|
./configure --enable-utf8proc
|
||||||
make
|
make
|
||||||
|
|
||||||
# Optionally, include additional steps for testing or installation
|
# Optionally, include additional steps for testing or installation
|
||||||
|
@ -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.
|
|
Loading…
Reference in New Issue
Block a user