Commit e891b960 authored by Seyed Reza  Sajjadinasab's avatar Seyed Reza Sajjadinasab
Browse files

Update .gitlab-ci.yml file

parent 968169d2
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
stages:
  - build
  - test

before_script:
  - apt-get update && apt-get install -y make  # Install make if not available by default

compile:
  stage: build
  tags:
    - openjdk 17
  script:
    - cd CheckerCorrector
    - make dev_checker
  artifacts:
    paths:
    - CheckerCorrector

test:
  stage: test
  tags:
    - openjdk 17
  script:
    - ./checker --sentence "I am an apple"