Commit 627551fd authored by Giuseppe Tropea's avatar Giuseppe Tropea
Browse files

first version of .gitlab-ci.yml

parent 643b00f7
Loading
Loading
Loading
Loading
Loading
+8 −28
Original line number Diff line number Diff line

before_script:
  - docker info

stages:
  - prepare
  - test

build:
  stage: prepare
  image: docker:19.03.12
# The Docker image that will be used to build your app
image: busybox
pages:
  script:
    - scripts/setBasePath.sh https://forge.etsi.org/rep/NGSI-LD/NGSI-LD/raw/master http://localhost:8080
    - docker build -t ngsi-local -f docker/Dockerfile .
  allow_failure: false

test:
  stage: test
  image: docker:19.03.12
  services:
    - ngsi-local
  script:
    - echo ${TEST}
    - scripts/setBasePath.sh https://forge.etsi.org/rep/NGSI-LD/NGSI-LD/raw/master http://localhost:9090
    - docker run --network host -i -v ${PWD}/:/data wistefan/redocly-openapi-cli bundle /data/spec/updated/ngsi-ld-spec-open-api.json -o /data/spec/updated/generated/full_api.json
    - docker run --network host --rm -v ${PWD}/:/local openapitools/openapi-generator-cli validate -i /local/spec/updated/generated/full_api.json
  allow_failure: false

# TODO: after gitlab update, the ci should publish the bundled api
    - echo "producing HTML of spec"
  artifacts:
    paths:
      # The folder that contains the files to be exposed at the Page URL
      - public