Raxen/.drone.yml

53 lines
973 B
YAML
Raw Normal View History

2022-06-25 10:49:41 +00:00
kind: pipeline
name: default
steps:
2022-06-26 16:28:27 +00:00
- name: restore-cache-with-filesystem
2022-06-26 16:59:55 +00:00
image: drillster/drone-volume-cache
2022-06-26 16:28:27 +00:00
settings:
restore: true
mount:
2022-06-26 16:59:55 +00:00
- ./build
2022-06-27 16:37:15 +00:00
- ./.gradle
2022-06-26 16:59:55 +00:00
# Mount the cache volume, needs "Trusted"
2022-06-26 16:28:27 +00:00
volumes:
2022-06-26 17:39:21 +00:00
- name: cache
2022-06-26 18:42:07 +00:00
path: /cache
2022-06-26 16:28:27 +00:00
- name: build
image: gradle:jdk17
commands:
2022-06-27 17:15:43 +00:00
- ls -a
2022-06-26 16:28:27 +00:00
- gradle assemble --stacktrace
2022-06-27 17:15:43 +00:00
- ls -a
2022-06-26 16:28:27 +00:00
- name: gitea_release
image: plugins/gitea-release
settings:
base_url: https://git.unurled.me
files: build/libs/*
api_key:
from_secret: api_key
prerelease: true
2022-06-26 16:49:50 +00:00
when:
event: tag
2022-06-26 16:28:27 +00:00
2022-06-26 17:41:57 +00:00
- name: rebuild-cache-with-filesystem
2022-06-26 16:59:55 +00:00
image: drillster/drone-volume-cache
2022-06-26 16:28:27 +00:00
settings:
rebuild: true
mount:
2022-06-26 17:20:55 +00:00
- ./build
2022-06-27 16:37:15 +00:00
- ./.gradle
2022-06-26 16:59:55 +00:00
# Mount the cache volume, needs "Trusted"
2022-06-26 16:28:27 +00:00
volumes:
2022-06-26 17:39:21 +00:00
- name: cache
2022-06-26 18:42:07 +00:00
path: /cache
2022-06-26 16:28:27 +00:00
2022-06-26 17:39:21 +00:00
volumes:
2022-06-26 17:39:59 +00:00
- name: cache
2022-06-26 17:39:21 +00:00
host:
2022-06-26 18:42:07 +00:00
path: /tmp/cache
2022-06-27 16:37:15 +00:00
# temp: {}