summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b08c05b7409b686ad5b7843e00fb05a9b62f36c5 (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
image: "registry.gitlab.com/gnu-taler/docker-taler-ci:latest"

before_script:
  - pg_ctlcluster 12 main start

test_legacy:
  script:
    - cd integrationtests
    - ./test-base.sh
    - ./test-double-link.sh
    - ./test-double-spend.sh
    - ./test-recoup.sh
    - ./test-refund.sh
    - ./test-retries.sh
    - ./test-withdrawal.sh
  allow_failure: true

test_pytest:
  script:
    - ./bootstrap
    - ./configure
    - make install
    - pytest -rP tests/

test_typescript:
  script:
    - ./bootstrap
    - ./configure
    - make install integrationtests

after_script:
  - pg_ctlcluster 12 main stop