forked from SteamDeckHomebrew/decky-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
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 'origin/main' into PR-testing
- Loading branch information
Showing
69 changed files
with
2,847 additions
and
1,520 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Steam Deck Homebrew Discord Server | ||
url: https://discord.gg/ZU74G2NJzk | ||
url: https://decky.xyz/discord | ||
about: Please ask and answer questions here. |
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,59 @@ | ||
name: Builder Win | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-win: | ||
name: Build PluginLoader for Win | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- name: Checkout 🧰 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up NodeJS 18 💎 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Set up Python 3.11.4 🐍 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11.4" | ||
|
||
- name: Install Python dependencies ⬇️ | ||
working-directory: ./backend | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyinstaller==5.13.0 | ||
pip install -r requirements.txt | ||
- name: Install JS dependencies ⬇️ | ||
working-directory: ./frontend | ||
run: | | ||
npm i -g pnpm | ||
pnpm i --frozen-lockfile | ||
- name: Build JS Frontend 🛠️ | ||
working-directory: ./frontend | ||
run: pnpm run build | ||
|
||
- name: Build Python Backend 🛠️ | ||
run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data "./backend/static;/static" --add-data "./backend/locales;/locales" --add-data "./backend/src/legacy;/src/legacy" --add-data "./plugin;/plugin" --hidden-import=logging.handlers --hidden-import=sqlite3 ./backend/main.py | ||
|
||
- name: Build Python Backend (noconsole) 🛠️ | ||
run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/static;/static" --add-data "./backend/locales;/locales" --add-data "./backend/src/legacy;/src/legacy" --add-data "./plugin;/plugin" --hidden-import=logging.handlers --hidden-import=sqlite3 ./backend/main.py | ||
|
||
- name: Upload package artifact ⬆️ | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: PluginLoader Win | ||
path: | | ||
./dist/PluginLoader.exe | ||
./dist/PluginLoader_noconsole.exe | ||
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,36 @@ | ||
name: Type Check | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
typecheck: | ||
name: Run type checkers | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 # Check out the repository first. | ||
|
||
- name: Install Python dependencies | ||
working-directory: backend | ||
run: | | ||
python -m pip install --upgrade pip | ||
[ -f requirements.txt ] && pip install -r requirements.txt | ||
- name: Install TypeScript dependencies | ||
working-directory: frontend | ||
run: | | ||
npm i -g pnpm | ||
pnpm i --frozen-lockfile | ||
- name: Run pyright (Python) | ||
uses: jakebailey/pyright-action@v1 | ||
with: | ||
python-version: "3.10.6" | ||
no-comments: true | ||
working-directory: backend | ||
|
||
- name: Run tsc (TypeScript) | ||
working-directory: frontend | ||
run: $(pnpm bin)/tsc --noEmit |
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.