QATlib README and INSTALL doc updates to add CPM2.0c SRF support #86
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: Linux Build gcc | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt install -y automake libtool pkg-config libssl-dev libz-dev nasm | |
- name: Checkout repository using checkout action v3.1.0 | |
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 | |
with: | |
repository: intel/qatlib | |
- name: autogen | |
run: ACLOCAL_PATH=/usr/share/aclocal ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make -j |