File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ .git
2+ .github
3+ .vscode
Original file line number Diff line number Diff line change 1+ on : workflow_dispatch
2+ jobs :
3+ build :
4+ runs-on : ubuntu-latest
5+ strategy :
6+ fail-fast : false
7+ matrix :
8+ arch : [aarch64, armhf, mipsel]
9+ steps :
10+ - uses : jlumbroso/free-disk-space@main
11+ with :
12+ large-packages : false
13+ - uses : actions/checkout@v4
14+ - name : build
15+ run : |
16+ docker build . -t garlicos-${{ matrix.arch }} --build-arg config=${{ matrix.arch }}
17+ docker run --rm garlicos-${{ matrix.arch }} tar -cf - output/images/rootfs.f2fs | gzip -9 > ${{ matrix.arch }}-rootfs.tar.gz
18+ - uses : actions/upload-artifact@v3
19+ with :
20+ path : ${{ matrix.arch }}-rootfs.tar.gz
21+ name : ${{ matrix.arch }}-rootfs.tar.gz
Original file line number Diff line number Diff line change 1+ ARG base=20230207.1123
2+ FROM registry.gitlab.com/buildroot.org/buildroot/base:${base}
3+ COPY . .
4+ ARG config
5+ RUN cp configs/garlicos_${config}_defconfig .config
6+ RUN make
You can’t perform that action at this time.
0 commit comments