Skip to content
Commits on Source (3)
stages:
- build
- deploy
makepkg:
stage: build
image: archlinux/base:latest
before_script:
- echo 'Server = http://mir.archlinux.fr/$repo/os/$arch' > /etc/pacman.d/mirrorlist
- echo '[seblu]' >> /etc/pacman.conf
- echo 'Server = http://al.seblu.net/$repo/$arch' >> /etc/pacman.conf
- echo 'SigLevel = Required TrustedOnly' >> /etc/pacman.conf
- pacman --sync --refresh --sysupgrade --noconfirm
- pacman --sync --noconfirm base-devel devtools
- useradd --home-dir /root --groups root,wheel --shell /bin/bash build
- chmod 770 /root
script:
- ulimit -c 0
- pwd
- ls -Rl
- sudo -u build -- makepkg --syncdeps
artifacts:
name: $CI_PROJECT_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHA
expire_in: 1 week
paths:
- "*.pkg.tar.xz"
commitpkg:
stage: deploy
image: archlinux/base:latest
before_script:
- echo 'Server = http://mir.archlinux.fr/$repo/os/$arch' > /etc/pacman.d/mirrorlist
- echo '[seblu]' >> /etc/pacman.conf
- echo 'Server = http://al.seblu.net/$repo/$arch' >> /etc/pacman.conf
- echo 'SigLevel = Required TrustedOnly' >> /etc/pacman.conf
- pacman --sync --refresh --sysupgrade --noconfirm
- pacman --sync --noconfirm openssh archrepo-git
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts &&
- chmod 644 ~/.ssh/known_hosts
script:
- seblu-push
only:
- master
# Maintainer: Sébastien Luttringer <seblu@archlinux.org> # Maintainer: Sébastien Luttringer <seblu@archlinux.org>
pkgname=base-seblu pkgname=base-seblu
pkgver=2018.01.25 pkgver=2019.01.10
pkgrel=1 pkgrel=1
pkgdesc='Provide depends on minimal seblu hosts packages' pkgdesc='Provide depends on minimal seblu hosts packages'
arch=('any') arch=('any')
...@@ -13,7 +13,6 @@ package() { ...@@ -13,7 +13,6 @@ package() {
depends=( depends=(
agetpkg agetpkg
archutils-git archutils-git
arptables
bash bash
bash-completion bash-completion
bind-tools bind-tools
...@@ -27,11 +26,10 @@ package() { ...@@ -27,11 +26,10 @@ package() {
device-mapper device-mapper
diffutils diffutils
dmidecode dmidecode
dosfstools
dstat dstat
e2fsprogs e2fsprogs
ebtables
ethtool ethtool
ferm
file file
filesystem filesystem
findutils findutils
...@@ -54,7 +52,6 @@ package() { ...@@ -54,7 +52,6 @@ package() {
iotop iotop
iperf iperf
iproute2 iproute2
ipset
iptraf-ng iptraf-ng
iptstate iptstate
iputils iputils
......