Switched CI to woodpecker

+ Bumped gradle version
woodpecker
Joey Hines 2022-01-09 20:14:13 -07:00
parent 8c780129cd
commit 9000fc9941
No known key found for this signature in database
GPG Key ID: 80F567B5C968F91B
4 changed files with 25 additions and 38 deletions

View File

@ -1,35 +0,0 @@
---
kind: pipeline
name: compliance
trigger:
event:
- pull_request
steps:
- name: build
pull: always
image: gradle:6.6
commands:
- gradle build
- gradle test
---
kind: pipeline
name: release
trigger:
branch:
- master
event:
- push
steps:
- name: publish
pull: always
image: gradle:6.6
environment:
MAVEN_PASSWORD:
from_secret: maven_password
commands:
- gradle publish

22
.woodpecker.yml 100644
View File

@ -0,0 +1,22 @@
---
pipeline:
compliance:
image: gradle:7.3-jdk17
commands:
- gradle build
- gradle test
when:
event: pull_request
---
pipeline:
release:
image: gradle:7.3-jdk17
environment:
- MAVEN_PASSWORD:
from_secret: maven_password
commands:
- gradle publish
when:
branch: master

View File

@ -34,8 +34,8 @@ publishing {
}
repositories {
maven {
name = "birbmc"
url = "https://mvn.birbmc.com/releases"
name = "jojodev"
url = "https://mvn.jojodev.com/releases"
credentials {
username = "admin"
password = System.getenv("MAVEN_PASSWORD")

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists