This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
forked from cosanta/cosanta-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dashpay#901: ci: Switch all Linux builds to Debian and more imp…
…rovements 9361f36 ci: Select number of parallel make jobs depending on CI environment (Tim Ruffing) 28eccdf ci: Split output of logs into multiple sections (Tim Ruffing) c7f754f ci: Run PRs on merge result instead of on the source branch (Tim Ruffing) b994a8b ci: Print information about binaries using "file" (Tim Ruffing) f24e122 ci: Switch all Linux builds to Debian (Tim Ruffing) Pull request description: Best reviewed commit by commit ACKs for top commit: jonasnick: ACK 9361f36 sipa: utACK 9361f36 Tree-SHA512: fc754e8b57dc58058cebbf63a60ca76e08dbaefea1508ea27b7f962bce697c10033da3f57a35f731bc7cf3e210eb00e3b8985ae8b729d7bd83faee085b878b9c
- Loading branch information
Showing
8 changed files
with
54 additions
and
59 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 was deleted.
Oops, something went wrong.
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,13 @@ | ||
FROM debian:stable | ||
|
||
RUN dpkg --add-architecture i386 | ||
RUN dpkg --add-architecture s390x | ||
RUN apt-get update | ||
|
||
# dkpg-dev: to make pkg-config work in cross-builds | ||
RUN apt-get install --no-install-recommends --no-upgrade -y \ | ||
git ca-certificates \ | ||
make automake libtool pkg-config dpkg-dev valgrind qemu-user \ | ||
gcc clang libc6-dbg libgmp-dev \ | ||
gcc-i686-linux-gnu libc6-dev-i386-cross libc6-dbg:i386 libgmp-dev:i386 \ | ||
gcc-s390x-linux-gnu libc6-dev-s390x-cross libc6-dbg:s390x |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.