summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 05e0c23a64ec613773ebfe7cb8267a92c00faf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
test-default:
  image: alpine:latest
  stage: test
  script:
    - apk add make gcc musl-dev kyua sfdisk openssl squashfs-tools
    - 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

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