Skip to content

Fix Codespell errors #11

Fix Codespell errors

Fix Codespell errors #11

Workflow file for this run

name: build
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run
# sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
runs-on: ubuntu-latest
strategy:
matrix:
configure_args: [
"",
"--with-curl",
"--with-nss",
]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job
# can access it
- uses: actions/checkout@v2
- name: setup prerequisites
shell: bash
run: |
sudo apt update
sudo apt install \
docbook-xsl \
doxygen \
gettext \
libcurl4-openssl-dev \
libldap2-dev \
libnss3-dev \
libpam-dev \
libpcsclite-dev \
libssl-dev \
pkg-config \
xsltproc
- name: compile
shell: bash
run: |
./bootstrap
export CFLAGS="-Wall -Wextra -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wswitch-enum -Wundef -Wuninitialized -Wunused -Wwrite-strings -Wmissing-noreturn -flto=auto -O2 -Wp,-D_FORTIFY_SOURCE=2"
./configure ${{ matrix.configure_args }}
make V=1
- name: distcheck
shell: bash
run: |
make distcheck