-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Things are a quite hairy in here, so bear with me: Atm the checkout action pulls the whole repo as tarball, since git is missing. Since we install packages via local actions, we need to first do an initial sparse checkout, install the packages (git including) and do a proper second checkout. At which point, the second checkout action claims to set safe.directory (it's the default) although in practise we need to do it again. Not sure why, haven't found a bug about it either. In addition, we cannot use conditionals within the run actions, because coreutils (for [ and test) are not installed on Debian/Ubuntu. Even after doing so, even though find, ls and command finds them the script simply fails. Once we get all that, meson dist will work. Otherwise it throws a less than helpful error message as below. Meson issue was reported ~2 years ago and we're about to get a fix soon (tm). Dist currently only works with Git or Mercurial repos Signed-off-by: Emil Velikov <[email protected]>
- Loading branch information
1 parent
7ed0628
commit 29df660
Showing
6 changed files
with
68 additions
and
37 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 |
---|---|---|
|
@@ -16,5 +16,7 @@ runs: | |
pacman --noconfirm -Su \ | ||
linux-headers \ | ||
meson \ | ||
scdoc \ | ||
git \ | ||
gtk-doc |
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 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