We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4302288 commit b29ea5cCopy full SHA for b29ea5c
.gitignore
@@ -1,2 +1,3 @@
1
.idea
2
*.iml
3
+target
justfile
@@ -0,0 +1,12 @@
+pwd := env_var('PWD')
+
+# fetch base image and build arch-pkgbuild-builder
4
+build:
5
+ docker pull martynas/archlinux
6
+ docker build -t arch-pkgbuild-builder .
7
8
+# run a comment on AUR project, like `just run-on-aur ucm-bin pkgbuild`
9
+run-on-aur project command:
10
+ mkdir -p target
11
+ git -C target/{{project}} pull || git clone https://aur.archlinux.org/{{project}}.git target/{{project}}
12
+ docker run --rm -v {{pwd}}/target/{{project}}:/home/build -v /tmp/gh:/github/home arch-pkgbuild-builder {{command}} .
0 commit comments