Sync master branch with upstream #1
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: Make Check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
check-ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: install dependencies | |
run: | | |
sudo apt update | |
sudo apt install automake autoconf libtool libtool-bin libltdl-dev libltdl7 | |
sudo apt install libxml2 libxml2-dev libxslt1.1 libxslt1-dev | |
sudo apt install libssl1.0.0 libssl-dev libnspr4 libnspr4-dev libnss3 libnss3-dev libnss3-tools libgcrypt20 libgcrypt20-dev libgnutls28-dev | |
- uses: actions/checkout@v4 | |
- run: mkdir build | |
- name: configure | |
working-directory: build | |
run: ../autogen.sh | |
- name: make | |
working-directory: build | |
run: make | |
- name: make check | |
working-directory: build | |
run: make check | |