26 lines
676 B
YAML
26 lines
676 B
YAML
# This is meant to be run as a local task
|
|
# I.e. you upload the code from local hd and
|
|
# It gets built in concourse ci
|
|
#
|
|
# To run it:
|
|
#
|
|
# - cd to the top of sts4 git repo on your machine
|
|
# - git clean -fxd (to avoid sending stuff that's not needed like locally built crap in maven target dirs)
|
|
# Caution! This command may delete files you may still want (if they are new and not yet tracked by git)
|
|
# - fly -t tools execute -c concourse/tasks/mvn-package.yml
|
|
---
|
|
platform: linux
|
|
|
|
image_resource:
|
|
type: docker-image
|
|
source:
|
|
repository: kdvolder/sts4-build-env
|
|
|
|
inputs:
|
|
- name: sts4
|
|
|
|
run:
|
|
path: mvn
|
|
args: ["clean", "package"]
|
|
dir: sts4/vscode-extensions
|