Skip to content

Commit

Permalink
create scripts for vocodehq-public (#615)
Browse files Browse the repository at this point in the history
* add script used to make PR

* adds test target for vocodehq-public
  • Loading branch information
ajar98 authored Jul 6, 2024
1 parent d4b139e commit 6b41941
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 50 deletions.
100 changes: 50 additions & 50 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [main]
pull_request:
branches: [main, vocode-core-0.1.0]
branches: [main, vocode-core-0.1.0, vocodehq-public]

env:
poetry-version: "1.8.3"
Expand All @@ -15,78 +15,78 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.10"
- "3.11"

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2

- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.poetry-version }}
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.poetry-version }}

- name: Install dependencies
run: poetry install -E all
- name: Install dependencies
run: poetry install -E all

- name: Run mypy
run: |
poetry run mypy -p vocode
poetry run mypy -p quickstarts
poetry run mypy -p playground
- name: Run mypy
run: |
poetry run mypy -p vocode
poetry run mypy -p quickstarts
poetry run mypy -p playground
- name: Run black
if: success() || failure()
run: poetry run black --check .
- name: Run black
if: success() || failure()
run: poetry run black --check .

- name: Run isort
shell: bash
if: success() || failure()
run: poetry run isort --check .
- name: Run isort
shell: bash
if: success() || failure()
run: poetry run isort --check .

pytest:
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.10"
- "3.11"

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2

- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.poetry-version }}
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.poetry-version }}

- name: Install dependencies
run: poetry install -E all
- name: Install dependencies
run: poetry install -E all

- name: Test with pytest
run: |
poetry run pytest -v tests
- name: Test with pytest
run: |
poetry run pytest -v tests
27 changes: 27 additions & 0 deletions pull_core_into_upstream.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash

# if gh is not installed, raise an error
if ! command -v gh >/dev/null 2>&1
then
echo "gh could not be found"
echo "Please install gh, e.g. 'brew install gh'"
exit 1
fi

SUBMODULE_BRANCH="vocodehq-public"

USER=$(gh api user | jq -r '.login')
DATE=$(date +%Y%m%d%H%M%S)
FEATURE_BRANCH="${USER}/update-${SUBMODULE_BRANCH}-${DATE}"
PR_TITLE="Update ${SUBMODULE_BRANCH}"
PR_BODY="This PR updates the ${SUBMODULE_BRANCH} branch by merging changes from the main branch."

echo "Creating a new branch ${FEATURE_BRANCH}"

git checkout main
git pull origin main
git pull origin ${SUBMODULE_BRANCH}
git checkout ${SUBMODULE_BRANCH}
git checkout -b ${FEATURE_BRANCH}
git merge main
gh pr create -t "${PR_TITLE}" -b "${PR_BODY}" -B ${SUBMODULE_BRANCH}

0 comments on commit 6b41941

Please sign in to comment.