You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
jobs:
|
|
|
|
build: # name of your job
|
|
|
|
machine: true # executor type
|
|
|
|
resource_class: brettwooldridge/ubuntu
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# Commands run in a Linux virtual machine environment
|
|
|
|
- checkout
|
|
|
|
- run: mvn clean package
|
|
|
|
|