-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from 2m/fix/fetch-gpg-2m
Fetch gpg keys for source validation
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 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 |
---|---|---|
|
@@ -5,8 +5,11 @@ build: | |
docker pull martynas/archlinux | ||
docker build -t arch-pkgbuild-builder . | ||
|
||
# run a comment on AUR project, like `just run-on-aur ucm-bin pkgbuild` | ||
run-on-aur project command: | ||
mkdir -p target | ||
git -C target/{{project}} pull || git clone https://aur.archlinux.org/{{project}}.git target/{{project}} | ||
docker run --rm -v {{pwd}}/target/{{project}}:/home/build -v /tmp/gh:/github/home arch-pkgbuild-builder {{command}} . | ||
# run a command on a project, like: | ||
# just run [email protected]:Marcool04/linux-fix-e1000e.git pkgbuild | ||
# just run https://aur.archlinux.org/ucm-bin.git pkgbuild | ||
run project-uri command: | ||
rm -rf target | ||
mkdir target | ||
git clone {{project-uri}} target | ||
docker run --rm -v {{pwd}}/target:/home/build -v /tmp/gh:/github/home arch-pkgbuild-builder {{command}} . |