Use Node.js script for database migrations #4812
This file contains hidden or 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
| name: Test orchestration Container | |
| on: | |
| pull_request: | |
| merge_group: | |
| types: | |
| - checks_requested | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - pyproject.toml | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| TEST_RUNNER_PYTHON_VERSION: 3.13 | |
| CONTAINER: orchestration | |
| jobs: | |
| orchestration-python-linting: # This job is the same as the python-linting job in linting-python.yaml but does not run if using linting-python.yaml | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup python ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| cache: pip | |
| - name: Install dependencies | |
| run: | | |
| pip install -U pip | |
| pip install ruff==0.12.11 | |
| - name: Run linter (ruff) | |
| run: | | |
| ruff check --output-format=github . | |
| - name: Run formatter (ruff) | |
| run: | | |
| ruff format --check | |
| orchestration-unit-test-python: | |
| runs-on: ubuntu-latest | |
| services: | |
| test-db: | |
| image: postgres:13-alpine3.16 | |
| env: | |
| POSTGRES_PASSWORD: pw | |
| POSTGRES_DB: testdb | |
| POSTGRES_USER: postgres | |
| # Set health checks to wait until postgres has started | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| --name testdb | |
| ports: | |
| - 5432:5432 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up env vars | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| run: ../../setup-env.sh | |
| - name: Setup python ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| cache: pip | |
| - name: Install pytest and pytest-cov | |
| run: pip install pytest pytest-cov | |
| - name: Install dependencies | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| run: | | |
| pip install -r requirements.txt | |
| if [ -f dev-requirements.txt ]; then | |
| pip install -r dev-requirements.txt | |
| fi | |
| - name: Run unit tests for container with coverage | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| run: | | |
| python -m pytest --cov-report xml --cov=. -m "not integration" tests/ | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: ${{ env.CONTAINER }} | |
| orchestration-integration-test-python: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up env vars | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| run: ../../setup-env.sh | |
| - name: Setup python ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{env.TEST_RUNNER_PYTHON_VERSION}} | |
| cache: pip | |
| - name: Install pytest | |
| run: pip install pytest | |
| - name: Install dependencies | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| # When running as a PR check, instead of importing the SDK from @main, | |
| # import it from the current commit. (Need to do this for all containers) | |
| run: | | |
| pip install -r requirements.txt | |
| if [ -f dev-requirements.txt ]; then | |
| pip install -r dev-requirements.txt | |
| fi | |
| - name: Run integration tests for containers | |
| working-directory: ./containers/${{env.CONTAINER}}/tests/integration | |
| run: | | |
| python -m pytest -m "integration" | |
| - name: Get docker logs | |
| if: ${{ !cancelled() }} | |
| working-directory: ./containers/${{env.CONTAINER}} | |
| shell: bash | |
| run: | | |
| echo "Saving $container logs" | |
| docker compose --profile "*" logs --timestamps >& integration-run.log | |
| - name: Archive docker logs | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: logs | |
| path: ./containers/${{env.CONTAINER}}/integration-run.log | |
| retention-days: 5 | |
| build-orchestration-container: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build ${{ env.CONTAINER }} Container | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./containers/${{ env.CONTAINER }} | |
| push: false | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| build-args: | | |
| "INGESTION_URL=${{secrets.INGESTION_URL}}" | |
| "MESSAGE_PARSER_URL=${{secrets.MESSAGE_PARSER_URL}}" | |
| "SMARTY_AUTH_ID=${{secrets.SMARTY_AUTH_ID}}" | |
| "SMARTY_AUTH_TOKEN=${{secrets.SMARTY_AUTH_TOKEN}}" |