mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
54 lines
1009 B
YAML
54 lines
1009 B
YAML
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: debian-build
|
|
|
|
steps:
|
|
- name: build
|
|
image: debian:testing
|
|
|
|
settings:
|
|
registry: gitea.hedron.io
|
|
username:
|
|
from_secret: username
|
|
password:
|
|
from_secret: password
|
|
repo: gitea.hedron.io/jtgans/g13gui
|
|
tags:
|
|
- latest
|
|
platform: linux/amd64
|
|
mtu: 1000
|
|
|
|
commands:
|
|
- apt-get update
|
|
- touch /etc/pbuilderrc
|
|
- apt-get install -y devscripts python3 build-essential git-buildpackage appstream dh-sequence-python3 meson
|
|
- make
|
|
|
|
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: manjaro-build
|
|
|
|
steps:
|
|
- name: build
|
|
image: archlinux:latest
|
|
|
|
settings:
|
|
registry: gitea.hedron.io
|
|
username:
|
|
from_secret: username
|
|
password:
|
|
from_secret: password
|
|
repo: gitea.hedron.io/jtgans/g13gui
|
|
tags:
|
|
- latest
|
|
platform: linux/amd64
|
|
mtu: 1000
|
|
|
|
commands:
|
|
- pacman -Syu
|
|
- pacman -S base-devel python meson
|
|
- make
|
|
|