diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-05-31 23:40:52 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-05-31 23:40:52 +0200 |
commit | 937a1abbbc887b8b1842244f94910939c14bfabb (patch) | |
tree | 43801b7c2de04bc3491c2f7597d175a5fe3828d8 /.github/workflows | |
parent | 1cafdd6bc63442040060d0efd1c4d1218808f426 (diff) | |
download | mini-kvm-rs-937a1abbbc887b8b1842244f94910939c14bfabb.tar.gz mini-kvm-rs-937a1abbbc887b8b1842244f94910939c14bfabb.zip |
gh action: build guest imgs before example
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/rust.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a803315..72180e2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,6 +17,8 @@ jobs: - name: Build run: cargo build --verbose - name: Build examples - run: cargo build --verbose --examples + run: | + make -C guest + cargo build --verbose --examples - name: Run tests run: cargo test --verbose |