Move to Woodpecker CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
3ac33c7869
commit
d4dd42b6bd
2 changed files with 29 additions and 1 deletions
28
.woodpecker/woodpecker.yml
Normal file
28
.woodpecker/woodpecker.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
steps:
|
||||
- name: build-install-locally
|
||||
when:
|
||||
event: [tag, push]
|
||||
image: maven:3-openjdk-17
|
||||
commands:
|
||||
- mvn -B -DskipTests clean install
|
||||
volumes:
|
||||
- /home/docker/woodpecker/files/m2:/root/.m2
|
||||
|
||||
- name: test
|
||||
when:
|
||||
event: [tag]
|
||||
image: maven:3-openjdk-17
|
||||
commands:
|
||||
- mvn test -B
|
||||
volumes:
|
||||
- /home/docker/woodpecker/files/m2:/root/.m2
|
||||
|
||||
- name: archive-artifact
|
||||
when:
|
||||
event: [tag, push]
|
||||
image: alpine:latest
|
||||
commands:
|
||||
- mkdir -p /builds/libKonogonka
|
||||
- cp target/libKonogonka-*[0-9].jar /builds/libKonogonka/
|
||||
volumes:
|
||||
- /home/www/builds:/builds
|
|
@ -1,6 +1,6 @@
|
|||
<img src="misc/logo.svg" title="" alt="libKonogonka" data-align="center">
|
||||
|
||||
![License](https://img.shields.io/badge/License-GPLv3-blue.svg) [![Build Status](https://ci.redrise.ru/api/badges/desu/libKonogonka/status.svg)](https://ci.redrise.ru/desu/libKonogonka)
|
||||
![License](https://img.shields.io/badge/License-GPLv3-blue.svg) [![status-badge](https://ci.redrise.ru/api/badges/11/status.svg)](https://ci.redrise.ru/repos/11)
|
||||
|
||||
Library made to work with NS-specific files / filesystem images. Separated backend of [konogonka](https://github.com/developersu/konogonka) ([independent source location](https://git.redrise.ru/desu/konogonka))
|
||||
|
||||
|
|
Loading…
Reference in a new issue