-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from Waujito/workflow_update
Move workflow binaries builds to docker instead of cache
- Loading branch information
Showing
19 changed files
with
159 additions
and
175 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This directory contains dockerfiles for large docker containers. This allows not to rebuild binaries every build and not to utilize cache. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/aarch64-3.10.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git -b k2.6 | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/armv7-2.6.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/armv7-3.2.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/mips-3.4.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/mipsel-3.4.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/x64-3.2.config .config | ||
RUN make -j$(nproc) toolchain/install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM waujito/entware_builder | ||
RUN git clone --depth 1 https://github.com/Entware/Entware.git -b k2.6 | ||
WORKDIR /home/me/Entware | ||
RUN make package/symlinks | ||
RUN cp -v configs/x86-2.6.config .config | ||
RUN make -j$(nproc) toolchain/install |
Submodule entware_docker
added at
90eb6b
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:14.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v3.x/linux-3.0.101.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v3.x/linux-3.10.108.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.322.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.4.302.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.167.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.284.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y build-essential flex bc bison libelf-dev elfutils libssl-dev wget | ||
|
||
RUN wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.52.tar.xz -O kernel.tar.xz | ||
RUN tar -xf kernel.tar.xz | ||
RUN rm -f kernel.tar.xz | ||
RUN /bin/bash -c "mv linux-* linux" | ||
|
||
WORKDIR /linux | ||
RUN make defconfig | ||
RUN make -j$(nproc) |
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
Oops, something went wrong.