forked from jagrosh/MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
113 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
image: ubuntu | ||
|
||
install: | ||
- sh: sudo add-apt-repository --yes ppa:rpardini/adoptopenjdk | ||
- sh: sudo apt-get update | ||
- sh: sudo apt-get install -y adoptopenjdk-11-jdk-hotspot-installer | ||
- sh: sudo apt install adoptopenjdk-11-jdk-hotspot-set-default | ||
#/usr/lib/jvm/adoptopenjdk-11-jdk-hotspot | ||
- sh: export JAVA_HOME=/usr/lib/jvm/adoptopenjdk-11-jdk-hotspot | ||
- sh: echo $JAVA_HOME | ||
- sh: export PATH=${PATH} | ||
|
||
before_build: | ||
- mvn -v | ||
|
||
build_script: | ||
- mvn clean package -DskipTests | ||
|
||
test_script: | ||
- mvn install verify | ||
|
||
on_finish: | ||
- sh: | | ||
find "$APPVEYOR_BUILD_FOLDER" -type f -name 'TEST*.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID" | ||
artifacts: | ||
- path: "**/target/*.?ar" | ||
|
||
version: "0.7.3.{build}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,6 @@ | |
// Notepad++などのエディタで編集する事を推奨します。 | ||
// ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ | ||
|
||
// この設定値はプログラム側で設定するので絶対に変更しないようにお願いします。 | ||
// 変更した場合、今後のアップデートで正しくファイル内容の更新がされなくなる可能性があります。 | ||
version = 1 | ||
|
||
// この項目は、Botがログインするためのトークンを設定します | ||
// 入力するトークンはBotトークンでなければなりません(ユーザートークンは機能しません) | ||
// Botトークンを取得する方法がわからない場合は、こちらのガイドを参照してください。 | ||
|
@@ -120,6 +116,13 @@ useniconico = false | |
nicomail = "[email protected]" | ||
nicopass = "0123456789" | ||
|
||
// YouTubeにログインして使用したい際はこちらにログイン情報を入力してください。 | ||
// YouTubeの再生は、ログイン無しで行なえます。ですが、YouTubeプレミアム限定動画などは | ||
// 再生する際にプレミアムに登録したアカウントが必要になります。 | ||
// 使用するアカウントが2段階認証を有効にしている場合はアプリパスワードを使用してください。 | ||
ytemail = "" | ||
ytpass = "" | ||
|
||
// この項目は、1曲の最大の長さを設定します。 | ||
// 0以下に設定すると、無制限になります。 | ||
// この制限は、任意の場所から曲が読み込まれた時に使用されます。 | ||
|