1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-14 19:02:45 +03:00
tiny-cloud/.gitlab-ci.yml
Jake Buchholz Göktürk fa3125f0a5 Fix OpenRC Dependencies
2023-05-10 18:16:14 +00:00

35 lines
633 B
YAML

test-default:
image: alpine:latest
stage: test
script:
- apk add make kyua yx xz lz4 zstd
- make -j $(nproc) check
tags:
- docker-alpine
- x86_64
test-dash:
extends: test-default
before_script:
- apk add dash
- ln -sf /usr/bin/dash /bin/sh
test-oksh:
extends: test-default
before_script:
- apk add oksh
- ln -sf /bin/oksh /bin/sh
# disabling for now - yash now hates 'local'
.test-yash:
extends: test-default
before_script:
- apk add yash
- ln -sf /usr/bin/yash /bin/sh
test-zsh:
extends: test-default
before_script:
- apk add zsh
- ln -sf /bin/zsh /bin/sh