-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: László Várady <laszlo.varady@anno.io>
- Loading branch information
Showing
5 changed files
with
31 additions
and
2 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 |
---|---|---|
|
@@ -24,7 +24,8 @@ on: | |
"ubuntu-lunar", | ||
"ubuntu-mantic", | ||
"almalinux-8", | ||
"fedora-39" | ||
"fedora-39", | ||
"fedora-40" | ||
]' | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ jobs: | |
image: | ||
- almalinux-8 | ||
- fedora-39 | ||
- fedora-40 | ||
- debian-bullseye | ||
- debian-bookworm | ||
- debian-sid | ||
|
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 |
---|---|---|
|
@@ -37,6 +37,6 @@ jobs: | |
"almalinux-8", | ||
"debian-bookworm", | ||
"debian-testing", | ||
"fedora-39", | ||
"fedora-40", | ||
"ubuntu-noble" | ||
]' |
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,26 @@ | ||
FROM fedora:40 | ||
LABEL maintainer="László Várady <laszlo.varady@axoflow.com>, Balazs Scheidler <bazsi77@gmail.com>" | ||
ENV OS_DISTRIBUTION=fedora | ||
ENV OS_DISTRIBUTION_CODE_NAME=40 | ||
|
||
ARG ARG_IMAGE_PLATFORM | ||
ARG COMMIT | ||
ENV IMAGE_PLATFORM ${ARG_IMAGE_PLATFORM} | ||
LABEL COMMIT=${COMMIT} | ||
|
||
COPY images/entrypoint.sh / | ||
COPY . /dbld/ | ||
|
||
RUN /dbld/builddeps workaround_rpm_repos | ||
RUN /dbld/builddeps install_dbld_dependencies | ||
RUN /dbld/builddeps add_copr_repo | ||
RUN /dbld/builddeps install_yum_packages | ||
RUN /dbld/builddeps install_rpm_build_deps | ||
|
||
RUN /dbld/builddeps install_criterion | ||
RUN /dbld/builddeps install_gradle | ||
|
||
VOLUME /source | ||
VOLUME /build | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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