libkvmi: add kvmi_alloc_gfn and kvmi_free_gfn #37
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
steps: | |
- name: Install required packages | |
run: sudo apt-get install uuid-dev | |
- uses: actions/checkout@v1 | |
- name: Bootstrap | |
run: ./bootstrap | |
- name: Configure | |
run: ./configure | |
- name: Build | |
run: make | |
- name: Install | |
run: sudo make install | |