Remove obsoleted daemon subdir #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile and Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
APT_PACKAGES: | | |
autoconf \ | |
automake \ | |
libgcrypt-dev \ | |
libfuse-dev \ | |
libgmp-dev \ | |
libreadline-dev \ | |
libtool \ | |
libtool-bin \ | |
libncurses-dev | |
jobs: | |
build-ubuntu: | |
name: Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }} | |
- name: Bootstrap | |
run: ./bootstrap | |
- name: Configure | |
run: ./configure | |
- name: Compile | |
run: make -j $(nproc) | |
- name: Distribution check | |
run: make distcheck | |
build-macos: | |
name: macOS | |
runs-on: macos-13 | |
env: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: brew install automake libgcrypt | |
- name: Bootstrap | |
run: ./bootstrap | |
- name: Configure | |
run: ./configure | |
- name: Compile | |
run: make -j $(nproc) |