robot-2024/.gitlab-ci.yml

14 lines
277 B
YAML
Raw Normal View History

2024-01-31 17:00:37 +00:00
default:
2024-01-31 17:02:44 +00:00
image: gradle:jdk17
2024-01-31 17:00:37 +00:00
tags:
- robot
stages: # List of stages for jobs, and their order of execution
- build
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- chmod +x gradlew
- ./gradlew build