Cpuid vm exit support #50
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: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Dependencies | |
run: | | |
sudo apt install -y lld nasm | |
sudo ln -s /usr/bin/lld-link-9 /usr/bin/lld-link | |
rustup default nightly | |
rustup target add i586-pc-windows-msvc x86_64-pc-windows-msvc | |
- name: Compile | |
run: cargo run | |
- name: Check | |
run: cargo run -- check |