LAP-DEV commited on
Commit
78bae28
·
verified ·
1 Parent(s): 119a0fb

Delete .github

Browse files
.github/FUNDING.yml DELETED
@@ -1,13 +0,0 @@
1
- # These are supported funding model platforms
2
-
3
- github: []
4
- patreon: # Replace with a single Patreon username
5
- open_collective: # Replace with a single Open Collective username
6
- ko_fi: jhj0517
7
- tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
- community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
- liberapay: # Replace with a single Liberapay username
10
- issuehunt: # Replace with a single IssueHunt username
11
- otechie: # Replace with a single Otechie username
12
- lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13
- custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.github/ISSUE_TEMPLATE/bug_report.md DELETED
@@ -1,11 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
- title: ''
5
- labels: bug
6
- assignees: jhj0517
7
-
8
- ---
9
-
10
- **Which OS are you using?**
11
- - OS: [e.g. iOS or Windows.. If you are using Google Colab, just Colab.]
 
 
 
 
 
 
 
 
 
 
 
 
.github/ISSUE_TEMPLATE/feature_request.md DELETED
@@ -1,10 +0,0 @@
1
- ---
2
- name: Feature request
3
- about: Any feature you want
4
- title: ''
5
- labels: enhancement
6
- assignees: jhj0517
7
-
8
- ---
9
-
10
-
 
 
 
 
 
 
 
 
 
 
 
.github/ISSUE_TEMPLATE/hallucination.md DELETED
@@ -1,12 +0,0 @@
1
- ---
2
- name: Hallucination
3
- about: Whisper hallucinations. ( Repeating certain words or subtitles starting too
4
- early, etc. )
5
- title: ''
6
- labels: hallucination
7
- assignees: jhj0517
8
-
9
- ---
10
-
11
- **Download URL for sample audio**
12
- - Please upload download URL for sample audio file so I can test with some settings for better result. You can use https://easyupload.io/ or any other service to share.
 
 
 
 
 
 
 
 
 
 
 
 
 
.github/pull_request_template.md DELETED
@@ -1,5 +0,0 @@
1
- ## Related issues
2
- - #0
3
-
4
- ## Changed
5
- 1. Changes
 
 
 
 
 
 
.github/workflows/ci-shell.yml DELETED
@@ -1,43 +0,0 @@
1
- name: CI-Shell Script
2
-
3
- on:
4
- workflow_dispatch:
5
-
6
- push:
7
- branches:
8
- - master
9
- pull_request:
10
- branches:
11
- - master
12
-
13
- jobs:
14
- test-shell-script:
15
-
16
- runs-on: ubuntu-latest
17
- strategy:
18
- matrix:
19
- python: [ "3.10" ]
20
-
21
- steps:
22
- - name: Clean up space for action
23
- run: rm -rf /opt/hostedtoolcache
24
-
25
- - uses: actions/checkout@v4
26
- - name: Setup Python
27
- uses: actions/setup-python@v5
28
- with:
29
- python-version: ${{ matrix.python }}
30
-
31
- - name: Install git and ffmpeg
32
- run: sudo apt-get update && sudo apt-get install -y git ffmpeg
33
-
34
- - name: Execute Install.sh
35
- run: |
36
- chmod +x ./Install.sh
37
- ./Install.sh
38
-
39
- - name: Execute start-webui.sh
40
- run: |
41
- chmod +x ./start-webui.sh
42
- timeout 60s ./start-webui.sh || true
43
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.github/workflows/ci.yml DELETED
@@ -1,41 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- workflow_dispatch:
5
-
6
- push:
7
- branches:
8
- - master
9
- pull_request:
10
- branches:
11
- - master
12
-
13
- jobs:
14
- build:
15
-
16
- runs-on: ubuntu-latest
17
- strategy:
18
- matrix:
19
- python: ["3.10"]
20
-
21
- env:
22
- DEEPL_API_KEY: ${{ secrets.DEEPL_API_KEY }}
23
-
24
- steps:
25
- - name: Clean up space for action
26
- run: rm -rf /opt/hostedtoolcache
27
-
28
- - uses: actions/checkout@v4
29
- - name: Setup Python
30
- uses: actions/setup-python@v5
31
- with:
32
- python-version: ${{ matrix.python }}
33
-
34
- - name: Install git and ffmpeg
35
- run: sudo apt-get update && sudo apt-get install -y git ffmpeg
36
-
37
- - name: Install dependencies
38
- run: pip install -r requirements.txt pytest
39
-
40
- - name: Run test
41
- run: python -m pytest -rs tests
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.github/workflows/publish-docker.yml DELETED
@@ -1,37 +0,0 @@
1
- name: Publish to Docker Hub
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- jobs:
9
- build-and-push:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - name: Log in to Docker Hub
14
- uses: docker/login-action@v2
15
- with:
16
- username: ${{ secrets.DOCKER_USERNAME }}
17
- password: ${{ secrets.DOCKER_PASSWORD }}
18
-
19
- - name: Checkout repository
20
- uses: actions/checkout@v3
21
-
22
- - name: Set up Docker Buildx
23
- uses: docker/setup-buildx-action@v3
24
-
25
- - name: Set up QEMU
26
- uses: docker/setup-qemu-action@v3
27
-
28
- - name: Build and push Docker image
29
- uses: docker/build-push-action@v5
30
- with:
31
- context: .
32
- file: ./Dockerfile
33
- push: true
34
- tags: ${{ secrets.DOCKER_USERNAME }}/whisper-webui:latest
35
-
36
- - name: Log out of Docker Hub
37
- run: docker logout