Add 3rd party rulesets
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2020-09-13 15:35:43 +02:00
parent 550340b24e
commit e307f5a75c
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 22 additions and 0 deletions

View File

@ -23,6 +23,28 @@ RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest |
-p:Version=${OSU_VERSION} \
osu.Desktop
RUN for ruleset in \
"Bosu|https://github.com/EVAST9919/bosu" \
"Hitokori|https://github.com/Flutterish/Hitokori" \
"Karaoke|https://github.com/karaoke-dev/karaoke" \
"Mvis|https://github.com/EVAST9919/lazer-m-vis" \
"Rush|https://github.com/swoolcock/rush" \
"Sentakki|https://github.com/LumpBloom7/sentakki" \
"Swing|https://github.com/EVAST9919/lazer-swing" \
"Tau|https://github.com/Altenhh/tau" \
; do \
repo_url="$(echo $ruleset | cut -d'|' -f2)" \
&& assembly_name="osu.Game.Rulesets.$(echo $ruleset | cut -d'|' -f1)" \
&& git clone --depth=1 "$repo_url" ruleset \
&& cd ruleset \
&& dotnet build \
-c Release \
"$assembly_name" \
&& cp "${assembly_name}"/bin/Release/net*/"${assembly_name}".dll /opt/osu/ \
&& cd .. \
&& rm -rf ruleset \
; done
FROM mcr.microsoft.com/dotnet/core/runtime
RUN apt-get update \