mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
Compare commits
3 Commits
f7c53127ae
...
1ff3705ff2
Author | SHA1 | Date | |
---|---|---|---|
1ff3705ff2 | |||
d2f005be07 | |||
8042c036d6 |
@ -1,51 +0,0 @@
|
||||
stages:
|
||||
- check_pkgbuild
|
||||
- build_package
|
||||
- install_package
|
||||
- check_package
|
||||
- build_repo
|
||||
- deploy_package
|
||||
|
||||
check_pkgbuild:
|
||||
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
|
||||
stage: check_pkgbuild
|
||||
script:
|
||||
- namcap PKGBUILD > PKGBUILD.namcap.out
|
||||
artifacts:
|
||||
paths:
|
||||
- PKGBUILD.namcap.out
|
||||
|
||||
build_package:
|
||||
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
|
||||
stage: build_package
|
||||
script:
|
||||
- makepkg --syncdeps --noconfirm --log --check
|
||||
artifacts:
|
||||
paths:
|
||||
- "*.log"
|
||||
- "*.pkg.tar.xz"
|
||||
|
||||
build_repo:
|
||||
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
|
||||
stage: build_repo
|
||||
script:
|
||||
- mkdir -p local-repo
|
||||
- repo-add local-repo/higherlearning.db.tar.xz
|
||||
cache:
|
||||
paths:
|
||||
- local-repo/
|
||||
|
||||
check_package:
|
||||
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
|
||||
stage: check_package
|
||||
script:
|
||||
- namcap *.pkg.tar.xz > PKG.namcap.out
|
||||
artifacts:
|
||||
paths:
|
||||
- PKG.namcap.out
|
||||
|
||||
deploy_package:
|
||||
image: andthensome/awscli
|
||||
stage: deploy_package
|
||||
script:
|
||||
- aws s3 sync . --endpoint-url=https://s3.eu-central-1.wasabisys.com s3://my-arch-repo/ --acl public-read --exclude "*" --include "*.pkg.tar.xz"
|
3
PKGBUILD
3
PKGBUILD
@ -6,8 +6,7 @@ pkgrel=1
|
||||
pkgdesc='A simple virtual terminal emulator for X.'
|
||||
arch=('i686' 'x86_64')
|
||||
license=('MIT')
|
||||
depends=('libxft' 'libxext')
|
||||
optdepends=('nerd-fonts-source-code-pro')
|
||||
depends=('libxft' 'libxext' 'otf-nerd-fonts-fira-code')
|
||||
makedepends=('ncurses')
|
||||
conflicts=('st')
|
||||
url="http://st.suckless.org"
|
||||
|
@ -1,7 +1,5 @@
|
||||
# My Suckless Terminal Build
|
||||
|
||||
[![pipeline status](https://gitlab.higherlearning.eu/personal/github/st/badges/master/pipeline.svg)](https://gitlab.higherlearning.eu/personal/github/st/commits/master)
|
||||
|
||||
[Suckless Terminal](https://st.suckless.org) [Arch](https://www.archlinux.org/) package with a few patches installed to keep things nice:
|
||||
|
||||
+ [alpha](https://st.suckless.org/patches/alpha/)
|
||||
|
Loading…
Reference in New Issue
Block a user