mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-04 19:25:51 +00:00
* docker container definitions for package building * cmake targets for building packages * initial gitlab CI + artifactory integration
17 lines
285 B
Bash
17 lines
285 B
Bash
#!/usr/bin/env sh
|
|
case ${CI_COMMIT_REF_NAME} in
|
|
develop)
|
|
export COMPONENT="nightly"
|
|
;;
|
|
release)
|
|
export COMPONENT="unstable"
|
|
;;
|
|
master)
|
|
export COMPONENT="stable"
|
|
;;
|
|
*)
|
|
export COMPONENT="_unknown_"
|
|
;;
|
|
esac
|
|
|