tmux/.github/workflows/ic.yml

36 lines
963 B
YAML
Raw Normal View History

2024-03-18 04:18:07 +00:00
name: Build and Test
2024-03-18 03:32:26 +00:00
2024-03-18 04:18:07 +00:00
on: [push, pull_request]
2024-03-18 03:32:26 +00:00
jobs:
2024-03-18 04:18:07 +00:00
build-and-test:
2024-03-18 03:32:26 +00:00
runs-on: ubuntu-latest
steps:
2024-03-18 04:18:07 +00:00
- uses: actions/checkout@v2
- name: Install dependencies for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update -qq
sudo apt-get -y install bison \
autotools-dev \
libncurses5-dev \
libevent-dev \
pkg-config \
libutempter-dev \
build-essential
if [ "${{ matrix.build }}" == "musl" ] || [ "${{ matrix.build }}" == "musl-static" ]; then
sudo apt-get -y install musl-dev \
musl-tools
fi
# Add steps for other operating systems if needed, similar to the Linux steps above.
2024-03-18 04:05:44 +00:00
2024-03-18 04:18:07 +00:00
- name: Build tmux
run: |
sh autogen.sh
./configure
make
2024-03-18 03:32:26 +00:00
2024-03-18 04:18:07 +00:00
# Add additional steps for running tests if applicable.