Makefile: disable systemd firstboot #21
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
compile: | |
name: Compile rootfs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies for build (Apt) | |
run: | | |
sudo env DEBIAN_FRONTEND=noninteractive apt update -y && \ | |
sudo env DEBIAN_FRONTEND=noninteractive apt install -y libarchive-tools | |
- name: Build | |
run: | | |
make | |
make clean |