Skip to content

docs and ci setup

docs and ci setup #1

Workflow file for this run

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