-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provide docker file for github builds with cmake #62
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
apt-get install -y --no-install-recommends wget build-essential cmake git ca-certificates && update-ca-certificates && \ | ||
apt-get clean all && \ | ||
apt-get -y autoremove | ||
|
||
RUN mkdir /toolchains && \ | ||
wget "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.2-2020.11/binrel/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu.tar.xz?revision=972019b5-912f-4ae6-864a-f61f570e2e7e&rev=972019b5912f4ae6864af61f570e2e7e&hash=A973F165C6D012E0738F90FB4A0C2BA7" -O /tmp/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu.tar.xz && \ | ||
wget https://github.com/ballaswag/k1-discovery/releases/download/1.0.0/mips-gcc720-glibc229.tar.gz -O /tmp/mips-gcc720-glibc229.tar.gz && \ | ||
tar -Jxf /tmp/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu.tar.xz -C /toolchains && \ | ||
tar -zxf /tmp/mips-gcc720-glibc229.tar.gz -C /toolchains && \ | ||
rm /tmp/mips-gcc720-glibc229.tar.gz && \ | ||
rm /tmp/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu.tar.xz | ||
|
||
ENV PATH=/toolchains/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu/bin:/toolchains/mips-gcc720-glibc229/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
WORKDIR /toolchains | ||
CMD ["/bin/bash"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,7 @@ libhv.a: | |
|
||
libspdlog.a: | ||
@mkdir -p $(SPDLOG_DIR)/build | ||
@cmake -B $(SPDLOG_DIR)/build -S $(SPDLOG_DIR)/ | ||
@cmake -B $(SPDLOG_DIR)/build -S $(SPDLOG_DIR)/ -DCMAKE_CXX_COMPILER=$(CXX) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this needed? Are line 5 and 6 where CC/CXX are defined no enough? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In my local environment I could not get cmake to work without it, but perhaps that was only on the command line. |
||
$(MAKE) -C $(SPDLOG_DIR)/build -j$(nproc) | ||
|
||
wpaclient: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe just do
FROM ballaswag/guppydev:latest
thenRUN DEBIAN_FRONTEND=noninteractive apt-get update && \ apt-get install -y --no-install-recommends cmake apt-get clean all && \ apt-get -y autoremove
Will try this and publish one with cmake