-
-
Notifications
You must be signed in to change notification settings - Fork 369
Remove all the files related to auto tools #1676
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,5 +1,5 @@ | ||||||||||||||
| # This is a Dockerfile for firod. | ||||||||||||||
| FROM debian:bullseye AS build-image | ||||||||||||||
| FROM debian:bookworm AS build-image | ||||||||||||||
|
|
||||||||||||||
| # Install required system packages | ||||||||||||||
| RUN apt-get update && apt-get install -y \ | ||||||||||||||
|
|
@@ -15,7 +15,11 @@ RUN apt-get update && apt-get install -y \ | |||||||||||||
| m4 \ | ||||||||||||||
| make \ | ||||||||||||||
| pkg-config \ | ||||||||||||||
| patch | ||||||||||||||
| patch \ | ||||||||||||||
| m4 \ | ||||||||||||||
| autoconf \ | ||||||||||||||
| automake \ | ||||||||||||||
| libtool | ||||||||||||||
|
Comment on lines
+18
to
+22
Contributor
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. 🛠️ Refactor suggestion | 🟠 Major Remove duplicate dependency declarations. Lines 18-22 duplicate dependencies already declared on lines 6-7 and 14 ( Apply this diff to remove duplicates: pkg-config \
- patch \
- m4 \
- autoconf \
- automake \
- libtool
+ patch📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
| # Build Firo | ||||||||||||||
| COPY . /tmp/firo/ | ||||||||||||||
|
|
@@ -25,11 +29,10 @@ WORKDIR /tmp/firo | |||||||||||||
| RUN cd depends && \ | ||||||||||||||
| NO_QT=true make HOST=$(uname -m)-linux-gnu -j$(nproc) | ||||||||||||||
|
|
||||||||||||||
| RUN ./autogen.sh && \ | ||||||||||||||
| ./configure --without-gui --enable-tests --prefix=/tmp/firo/depends/$(uname -m)-linux-gnu && \ | ||||||||||||||
| make -j$(nproc) && \ | ||||||||||||||
| make check && \ | ||||||||||||||
| make install | ||||||||||||||
| RUN cmake -B build -DCMAKE_TOOLCHAIN_FILE=$(pwd)/depends/$(uname -m)-linux-gnu/toolchain.cmake -DBUILD_GUI=OFF -DBUILD_TESTS=ON && \ | ||||||||||||||
| cmake --build build -j$(nproc) && \ | ||||||||||||||
| cd build && make test && \ | ||||||||||||||
| cmake --install build --prefix /tmp/firo/depends/$(uname -m)-linux-gnu | ||||||||||||||
|
|
||||||||||||||
| # extract shared dependencies of firod and firo-cli | ||||||||||||||
| # copy relevant binaries to /usr/bin, the COPY --from cannot use $(uname -m) variable in argument | ||||||||||||||
|
|
||||||||||||||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.