summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 3a19e812e6ba2280cbe5f655fbfda82ef7b9f9f8 (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
image: haskell:8.10.7

stages:
  - build
  - trigger

build-job:
  only: 
    refs:
      - main
  stage: build
  script:
    - stack build
    - mkdir dist
    - stack install --local-bin-path dist
    - cp config.json dist
  artifacts:
    paths:
      - dist
  cache:
    key: '$CI_JOB_NAME-$CI_COMMIT_REF_SLUG'
    paths:
      - dist

trigger-mapservice-pipeline:
  only:
    refs:
      - main
  stage: trigger
  script:
    - curl -X POST -F token=$MAPSERVICE_TOKEN -F ref=main https://git.cccv.de/api/v4/projects/252/trigger/pipeline