Skip to content

Merge pull request #4 from FantasqueX/remove-community #18

Merge pull request #4 from FantasqueX/remove-community

Merge pull request #4 from FantasqueX/remove-community #18

Workflow file for this run

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