mirror of
https://codeberg.org/scip/bubblebabble.git
synced 2025-12-16 19:00:57 +01:00
26 lines
426 B
YAML
26 lines
426 B
YAML
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
|
|
labels:
|
|
platform: ${platform}
|
|
|
|
steps:
|
|
build:
|
|
when:
|
|
event: [push]
|
|
image: alpine:latest
|
|
commands:
|
|
- apk update
|
|
- apk add --no-cache bash build-base
|
|
- make
|
|
|
|
test:
|
|
when:
|
|
event: [push]
|
|
image: alpine:latest
|
|
commands:
|
|
- apk update
|
|
- apk add --no-cache bash
|
|
- echo hier | ./bubblebabble | grep xipak-nynil-dedox
|