vmtest Build #122
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: vmtest Build | |
on: | |
schedule: | |
- cron: '16 6 * * MON' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install dwarves libelf-dev | |
pip install aiohttp uritemplate | |
- name: Build and upload assets | |
run: python3 -m vmtest.manage --kernel-directory build/vmtest/linux.git --build-directory build/vmtest/kbuild -K | |
- name: Upload kernel build logs | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: kernel-build-logs | |
path: build/vmtest/kbuild/*.log | |
if-no-files-found: ignore |