robot-2023/.gitlab-ci.yml

15 lines
278 B
YAML
Raw Normal View History

2023-02-03 14:55:31 +00:00
default:
2023-02-03 15:34:22 +00:00
image: gradle:jdk11
2023-02-03 15:19:57 +00:00
tags:
- robot
2023-02-03 14:55:31 +00:00
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:
2023-02-03 15:35:54 +00:00
- chmod +x gradlew
2023-02-03 14:55:31 +00:00
- ./gradlew build