-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Modernize config, build for Debian stable / Fedora latest
- Loading branch information
Showing
3 changed files
with
44 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# Docker file for AppStream Generator CI tests | ||
# | ||
FROM debian:stable | ||
|
||
# prepare | ||
RUN mkdir -p /build/ci/ | ||
|
||
# install build dependencies | ||
COPY install-deps-deb.sh /build/ci/ | ||
RUN chmod +x /build/ci/install-deps-deb.sh && /build/ci/install-deps-deb.sh | ||
|
||
# install 3rd-party stuff | ||
COPY ci-install-extern.sh /build/ci/ | ||
RUN chmod +x /build/ci/ci-install-extern.sh && /build/ci/ci-install-extern.sh | ||
|
||
# finish | ||
WORKDIR /build |
2 changes: 1 addition & 1 deletion
2
tests/ci/Dockerfile-fedora-rawhide → tests/ci/Dockerfile-fedora-latest
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