lib-dropbear: refactor includes #29
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
on: | |
push: | |
jobs: | |
build-default-x86_64: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- run: apt -qqy update && apt -qqy install build-essential git flex bison wget python3 unzip | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: pwd && ls -alh | |
- run: UK_DEFCONFIG=$(pwd)/defconfigs/qemu-x86_64 make defconfig | |
- run: make | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: build/unikraft-dropbear_qemu-x86_64 |