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
2024-06-26 16:19:52 +02:00

46 lines
789 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
# disabled - yash 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
test-install:
image: alpine:latest
stage: test
script:
- apk add make
- make install PREFIX=/tmp/tiny-cloud
tags:
- docker-alpine
- x86_64