-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- test containers workflow updates - fix generation - update build-binaries
- Loading branch information
Showing
7 changed files
with
38 additions
and
22 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
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
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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
FROM photon:3.0 | ||
FROM photon:5.0 | ||
|
||
# Install dependencies | ||
RUN tdnf upgrade -y && tdnf remove toybox -y && \ | ||
tdnf install -y build-essential git rpm-build coreutils util-linux \ | ||
make autoconf automake gcc ncurses-devel sed tar texinfo procps-ng grep \ | ||
findutils gzip file which libxml2 python3 python3-pip jq && \ | ||
make autoconf automake gcc ncurses-devel sed tar texinfo wget procps-ng grep \ | ||
findutils gzip file which libxml2 python3 python3-pip jq clang gcc-multilib && \ | ||
pip3 install --upgrade pip && pip3 install setuptools && \ | ||
pip3 install demjson3 | ||
pip3 install demjson3 && mkdir -p /zig && \ | ||
wget https://ziglang.org/builds/zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz && \ | ||
tar xf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz -C /zig --strip-components=1 && \ | ||
rm -rf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz | ||
|
||
COPY . /root | ||
WORKDIR /root |
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 |
---|---|---|
@@ -1,12 +1,16 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:22.04 | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get -y -q upgrade && DEBIAN_FRONTEND=noninteractive apt-get -y -q install \ | ||
bc bison flex build-essential ccache git \ | ||
bc bison flex build-essential ccache git file \ | ||
libncurses-dev libssl-dev u-boot-tools wget \ | ||
xz-utils vim xfce4 libxml2-utils python-demjson jq \ | ||
gcc-multilib clang \ | ||
&& apt-get clean | ||
xz-utils vim xfce4 libxml2-utils python3 python3-pip jq \ | ||
gcc clang && apt-get clean \ | ||
pip3 install --upgrade pip && pip3 install setuptools && \ | ||
pip3 install demjson3 && mkdir -p /zig && \ | ||
wget https://ziglang.org/builds/zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz && \ | ||
tar xf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz -C /zig --strip-components=1 && \ | ||
rm -rf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz | ||
|
||
COPY . /root | ||
WORKDIR /root |
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
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
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