Skip to content

Commit

Permalink
Run debug_all instead of individual debugs. (#233)
Browse files Browse the repository at this point in the history
* Debug All.

* Debug all.

* Add.
  • Loading branch information
robinjhuang authored Nov 13, 2024
1 parent dc41d34 commit 46a7ba0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 28 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/debug_all.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build All Platforms Debug

on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/debug_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@ name: Build App Linux Debug
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- '.prettierrc'
- '.eslintrc.json'
- '.prettierignore'
- 'package.json'

jobs:
build-linux-debug:
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/debug_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@ name: Build App Macos Debug
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- '.prettierrc'
- '.eslintrc.json'
- '.prettierignore'
- 'package.json'

jobs:
build-macos-debug:
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/debug_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@ name: Build App Windows Debug
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- '.prettierrc'
- '.eslintrc.json'
- '.prettierignore'

jobs:
build-windows-debug:
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import axios from 'axios';
import path from 'node:path';
import { SetupTray } from './tray';
import { IPC_CHANNELS, SENTRY_URL_ENDPOINT, ProgressStatus } from './constants';
import { app, BrowserWindow, dialog, ipcMain, shell } from 'electron';
import { app, dialog, ipcMain } from 'electron';
import log from 'electron-log/main';
import * as Sentry from '@sentry/electron/main';
import * as net from 'net';
import { graphics } from 'systeminformation';
import { createModelConfigFiles, getModelConfigPath, readBasePathFromConfig } from './config/extra_model_config';
import { createModelConfigFiles, getModelConfigPath } from './config/extra_model_config';
import todesktop from '@todesktop/runtime';
import { PythonEnvironment } from './pythonEnvironment';
import { DownloadManager } from './models/DownloadManager';
Expand Down

0 comments on commit 46a7ba0

Please sign in to comment.