-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/upstream/develop' into Fix-audi…
…ohat-gpio
- Loading branch information
Showing
102 changed files
with
5,498 additions
and
2,282 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,3 @@ | ||
/components/controls/buttons_usb_encoder/ @jeripeierSBB | ||
/scripts/installscripts/buster-install-default.sh @jeripeierSBB | ||
/scripts/installscripts/buster-install-default-with-autohotspot.sh @jeripeierSBB |
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,19 @@ | ||
--- | ||
name: future3 Bug Report | ||
about: Use this template to report bugs for the upcoming version 3 | ||
title: "ISSUE SUMMARY on future3" | ||
labels: future3, bug, needs triage | ||
--- | ||
|
||
### Describe your problem | ||
|
||
Core, Web application ... | ||
|
||
#### What's your hardware set up? | ||
|
||
RPi version, RFID Reader, Audio devices etc. | ||
|
||
#### If possible, try to attach logs from ... (paths from RPi) | ||
|
||
* `~/RPi-Jukebox-RFID/shared/logs` -> General Jukebox logs | ||
* `~/INSTALL-XXXXXXXXX.log` -> The logfile being generated when installing the Jukebox code |
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,21 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
|
||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Python + Docs Checks and Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.py' | ||
- '**.py.*' | ||
- 'docs/sphinx/**' | ||
pull_request: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.py' | ||
- '**.py.*' | ||
- 'docs/sphinx/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.7, 3.8] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libasound2-dev | ||
python -m pip install --upgrade pip | ||
pip install wheel | ||
pip install spidev | ||
pip install -r requirements.txt | ||
# For operation of the Jukebox, ZMQ must be compiled from sources due to Websocket support | ||
# When just building the docs, the regular ZMQ package is sufficient | ||
pip install -r docs/sphinx/requirements_pyzmq.txt | ||
pip install -r docs/sphinx/requirements.txt | ||
# Also install all optional dependencies | ||
pip install -r src/jukebox/components/rfid/fake_reader_gui/requirements.txt | ||
- name: Lint with flake8 | ||
run: | | ||
pip install flake8 | ||
# Stop the build if linting fails | ||
./run_flake8.sh | ||
- name: Build the docs | ||
working-directory: ./docs/sphinx | ||
run: | | ||
# Stop the build if documentation cannot be built | ||
# Treat all warnings as errors | ||
sphinx-build -W --keep-going -T -a -E -b html . _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
Oops, something went wrong.