mirror of
https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git
synced 2025-12-14 19:02:45 +03:00
46 lines
834 B
YAML
46 lines
834 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
|
|
|
|
# disabled - 0.13.1 has globbing bug
|
|
#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 /usr/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
|