Manpage: Improve description of several options #30
This file contains hidden or 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: C/C++ CI | |
on: | |
push: | |
branches: [ "master", "r" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and test on the latest Ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: ./configure --disable-openssl --enable-gettext --enable-debug=-O0 | |
- name: make | |
run: make | |
- name: make test-lib print-info | |
run: make test-lib print-info | |
- name: make test-full | |
run: make test-full | |
build-powerpc64: | |
runs-on: ubuntu-latest | |
name: Build and test on PowerPC 64 | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y qemu-user-static binfmt-support \ | |
gcc-powerpc64-linux-gnu libc-dev-ppc64-cross | |
- name: configure | |
run: | | |
./configure --disable-openssl --disable-gettext --enable-static \ | |
--cc=powerpc64-linux-gnu-gcc | |
- name: make | |
run: make | |
- name: make test-lib print-info | |
run: make test-lib print-info | |
- name: make test-full | |
run: make test-full |