Test drone builds.
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing

This commit is contained in:
Mark Nellemann 2023-08-14 18:08:19 +02:00
parent 1289f3b8ff
commit 6eac4dedec

View file

@ -23,7 +23,9 @@ steps:
from_secret: AUTH_TOKEN # Name of DroneCI secret exposed above
commands:
- apt-get update && apt-get install -y dpkg-dev unzip zip curl
- ./gradlew --quiet --no-daemon build jpackage
- curl -s 'https://get.sdkman.io' | bash
- source $HOME/.sdkman/bin/sdkman-init.sh && sdk install java 17.0.8.fx-librca
- source $HOME/.sdkman/bin/sdkman-init.sh && ./gradlew --no-daemon clean build jpackage
- for file in build/jpackage/*.{rpm,deb} ; do curl -s --user "$${AUTH_TOKEN}" --upload-file "$${file}" "https://git.data.coop/api/packages/${DRONE_REPO_OWNER}/generic/${DRONE_REPO_NAME}/${DRONE_TAG}/$(basename $file)" ; done
when:
event:
@ -36,8 +38,10 @@ steps:
AUTH_TOKEN: # Gitea access token ENV variable
from_secret: AUTH_TOKEN # Name of DroneCI secret exposed above
commands:
- dnf -y install unzip zip rpm-build
- ./gradlew --quiet --no-daemon build jpackage
- dnf -y install unzip zip curl rpm-build
- curl -s 'https://get.sdkman.io' | bash
- source $HOME/.sdkman/bin/sdkman-init.sh && sdk install java 17.0.8.fx-librca
- source $HOME/.sdkman/bin/sdkman-init.sh && ./gradlew --no-daemon clean build jpackage
- for file in build/jpackage/*.{rpm,deb} ; do curl -s --user "$${AUTH_TOKEN}" --upload-file "$${file}" "https://git.data.coop/api/packages/${DRONE_REPO_OWNER}/generic/${DRONE_REPO_NAME}/${DRONE_TAG}/$(basename $file)" ; done
when:
event: