Skip to content

Commit

Permalink
Have CI script upload all disk images
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Sep 2, 2020
1 parent 9f7e42d commit 06b2782
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ jobs:
path: output/ward.elf
- name: Install mtools
run: sudo apt-get update && sudo apt-get install -y mtools
- name: Build ward.img
run: make -j img
- name: Upload ward.img
- name: Build disk images
run: make -j disks
- name: Upload disk images
uses: actions/upload-artifact@v1
with:
name: ward.img
path: output/ward.img
name: disks
path: |
output/ward.img
output/ward.vhdx
output/ward.vmdk
output/ward.vdi
- name: Install QEMU
run: sudo apt-get install -y qemu-system-x86
- name: Unit tests
run: make qemu-test
run: make qemu-test

0 comments on commit 06b2782

Please sign in to comment.