Skip to content

Commit

Permalink
ci: build virtio example
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan-Velickovic committed Nov 10, 2023
1 parent 0cda92a commit e9e53ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
steps:
- name: Checkout VMM repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Download Microkit SDK
run: ./ci/acquire_sdk.sh microkit-sdk.zip ${{ secrets.GITHUB_TOKEN }} linux-x86-64
shell: bash
Expand Down Expand Up @@ -58,6 +60,8 @@ jobs:
steps:
- name: Checkout VMM repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Download Microkit SDK
run: ./ci/acquire_sdk.sh microkit-sdk.zip ${{ secrets.GITHUB_TOKEN }} macos-x86-64
shell: bash
Expand Down Expand Up @@ -88,6 +92,8 @@ jobs:
steps:
- name: Checkout VMM repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Download Microkit SDK
run: ./ci/acquire_sdk.sh microkit-sdk.zip ${{ secrets.GITHUB_TOKEN }} linux-x86-64
shell: bash
Expand All @@ -109,6 +115,8 @@ jobs:
steps:
- name: Checkout VMM repository
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Download Microkit SDK
run: ./ci/acquire_sdk.sh microkit-sdk.zip ${{ secrets.GITHUB_TOKEN }} macos-x86-64
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions ci/examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,8 @@ simulate_rust "debug"
build_rust "release"
simulate_rust "release"

build_virtio "qemu_arm_virt" "debug"
build_virtio "qemu_arm_virt" "release"

echo ""
echo "CI|INFO: Passed all VMM tests"

0 comments on commit e9e53ae

Please sign in to comment.