Commit 80f1be90 authored by Seyed Reza  Sajjadinasab's avatar Seyed Reza Sajjadinasab
Browse files

Update .gitlab-ci.yml file

parent 8dab8fd1
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
image: adoptopenjdk/openjdk17:latest

stages:
  - build
  - test

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

compile:
  stage: build
  script:
    - make dev_checker
  artifacts:
    paths:
      - checker  # Assuming 'checker' is the compiled executable

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