-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md Fix wrong sentence * Update action - Should create reproducible builds now * Update main.yml * fix: Fill random seed with individual filenames - The frandom-seed value should be different for each compiled file - see <https://gcc.gnu.org/onlinedocs/gcc/Developer-Options.html> for details * Update Dockerfile to Fedora 41 - More recent packages - Ignore weak dependencies to speed up installation * Update GH action to use Fedora 41 as well - Also skip weak dependencies there
- Loading branch information
Showing
4 changed files
with
13 additions
and
35 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM registry.fedoraproject.org/fedora:37 | ||
RUN dnf install -y mingw64-gcc wine-core | ||
FROM registry.fedoraproject.org/fedora:41 | ||
RUN dnf --setopt=install_weak_deps=False install -y mingw64-gcc make wine-core |
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