This commit is contained in:
parent
0f99006195
commit
a4585b1c19
1 changed files with 9 additions and 3 deletions
12
.drone.yml
12
.drone.yml
|
@ -7,7 +7,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- find usr/local/bin -type f -exec echo Testing {} \; -exec shellcheck {} \;
|
- find usr/local/bin -type f -exec echo Testing {} \; -exec shellcheck {} \;
|
||||||
- name: build arch package
|
- name: build arch package
|
||||||
image: archlinux/archlinux
|
image: archlinux/archlinux:base-devel
|
||||||
commands:
|
commands:
|
||||||
- cd _pkg
|
- pacman -Syu
|
||||||
- makepkg -cs
|
- mkdir /home/build
|
||||||
|
- cp -r /drone/src /home/build
|
||||||
|
- chgrp nobody /home/build
|
||||||
|
- chmod g+ws /home/build
|
||||||
|
- setfacl -m u::rwx,g::rwx /home/build
|
||||||
|
- setfacl -d --set u::rwx,g::rwx,o::- /home/build
|
||||||
|
- sudo -u nobody cd _pkg makepkg -cs
|
||||||
|
|
Loading…
Reference in a new issue