docs and ci setup #1
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: InfraVM CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build C11 VM | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install native dependencies | |
| run: sudo apt-get update && sudo apt-get install -y build-essential libcurl4-openssl-dev | |
| - name: Build InfraVM | |
| run: make -C infravm | |
| - name: Smoke test binary | |
| run: test -x infravm/infravm |