-
Notifications
You must be signed in to change notification settings - Fork 171
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
77 changed files
with
2,431 additions
and
4,955 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
version: 2 | ||
jobs: | ||
build_raspbian-stretch_armv7: | ||
docker: | ||
- image: docker:18.09.6 | ||
steps: | ||
- checkout | ||
- setup_remote_docker: | ||
version: 18.09.3 | ||
- run: | ||
command: apk add make bash git | ||
- run: | ||
command: DOCKER_BUILDKIT=1 NOTTY=1 NOMOUNT=1 make raspbian-stretch_armv7 | ||
working_directory: build | ||
no_output_timeout: 2h | ||
build_raspbian-stretch_armv6: | ||
docker: | ||
- image: docker:18.09.6 | ||
steps: | ||
- checkout | ||
- setup_remote_docker: | ||
version: 18.09.3 | ||
- run: | ||
command: apk add make bash git | ||
- run: | ||
command: DOCKER_BUILDKIT=1 NOTTY=1 NOMOUNT=1 make raspbian-stretch_armv6 | ||
working_directory: build | ||
no_output_timeout: 2h | ||
build_ubuntu-18.04_armv8: | ||
docker: | ||
- image: docker:18.09.6 | ||
steps: | ||
- checkout | ||
- setup_remote_docker: | ||
version: 18.09.3 | ||
- run: | ||
command: apk add make bash git | ||
- run: | ||
command: DOCKER_BUILDKIT=1 NOTTY=1 NOMOUNT=1 make ubuntu-18.04_armv8 | ||
working_directory: build | ||
no_output_timeout: 2h | ||
build_ubuntu-18.04_x86_64: | ||
docker: | ||
- image: docker:18.09.6 | ||
steps: | ||
- checkout | ||
- setup_remote_docker: | ||
version: 18.09.3 | ||
- run: | ||
command: apk add make bash git | ||
- run: | ||
command: DOCKER_BUILDKIT=1 NOTTY=1 NOMOUNT=1 make ubuntu-18.04_x86_64 | ||
working_directory: build | ||
no_output_timeout: 2h | ||
build_macos: | ||
macos: | ||
xcode: "10.2.1" | ||
steps: | ||
- checkout | ||
- run: | ||
command: make macos | ||
working_directory: build | ||
no_output_timeout: 2h | ||
|
||
workflows: | ||
version: 2 | ||
# build_workflow: | ||
# jobs: | ||
# - build_raspbian-stretch_armv6 | ||
# - build_raspbian-stretch_armv7 | ||
# - build_ubuntu-18.04_armv8 | ||
# - build_ubuntu-18.04_x86_64 | ||
# - build_macos | ||
|
||
daily_build_workflow: | ||
triggers: | ||
- schedule: | ||
# UTCで記述する事、この場合は日本時間 22 時にしたいので -9 して 13 にしてある | ||
cron: "0 13 * * *" | ||
filters: | ||
branches: | ||
only: | ||
- develop | ||
jobs: | ||
- build_raspbian-stretch_armv6 | ||
- build_raspbian-stretch_armv7 | ||
- build_ubuntu-18.04_armv8 | ||
- build_ubuntu-18.04_x86_64 | ||
weekly_build_workflow: | ||
triggers: | ||
- schedule: | ||
# macOS はリソースが限られてるので週 1 、日曜日のみビルドする | ||
# UTCで記述する事、この場合は日本時間 22 時にしたいので -9 して 13 にしてある | ||
cron: "0 13 * * 0" | ||
filters: | ||
branches: | ||
only: | ||
- develop | ||
jobs: | ||
- build_macos | ||
|
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,38 @@ | ||
--- | ||
name: Bug report | ||
about: 改善に役立つレポートを作成する | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**バグを説明してください** | ||
|
||
バグが何であるかの明確かつ簡潔な説明をお願いします。 | ||
|
||
**再現する** | ||
|
||
問題の再現手順の momo のコマンドを教えてください。 | ||
|
||
**予想される行動** | ||
|
||
何が起こることが予想されていたのかについての明確で簡潔な説明をお願いします。 | ||
|
||
**カメラ/マイク** | ||
|
||
利用しているカメラやマイクの型番を教えてください。 | ||
|
||
lsusb のコマンド結果を貼ってください。 | ||
|
||
**自前バイナリ/提供バイナリ** | ||
|
||
自前バイナリの方はビルドしたコミットハッシュを、提供バイナリの方はバイナリのファイル名を教えてください。 | ||
|
||
**--log-level 1 の出力ログ** | ||
|
||
txt ファイルにて添付してください。 | ||
|
||
**追加の情報** | ||
|
||
この問題に関する他の情報をここに追加してください。 |
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
Oops, something went wrong.