2023-02-03 14:55:31 +00:00
|
|
|
default:
|
2023-02-03 15:19:57 +00:00
|
|
|
image: wpilib/roborio-cross-ubuntu:2023-22.04
|
|
|
|
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:
|
|
|
|
- git config --global --add safe.directory $CI_PROJECT_DIR
|
|
|
|
- chmod +x gradlew
|
|
|
|
- ./gradlew build
|
|
|
|
|