Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: BI-0 test ansible #760

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: git branch --contains ${{ github.event.pull_request.base.sha }}

gh_build_image:
runs-on: [ self-hosted, linux, k8s-runner-build ]
runs-on: [ self-hosted, linux, light ]

needs: [ check-ci-allowed ]

Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
/bin/bash ci/build_naive.sh

router:
runs-on: [ self-hosted, linux, k8s-runner-no-compose ]
runs-on: [ self-hosted, linux, light ]
needs: gh_build_image
container:
image: "ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}/datalens_ci_with_code:${{ github.sha }}"
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

pytest_split:
name: Split pytest into jobs for each test type
runs-on: [ self-hosted, linux, k8s-runner-no-compose ]
runs-on: [ self-hosted, linux, light ]

needs: [ router, check-skip-tests-label ]
if: ${{ needs.check-skip-tests-label.outputs.result != 'true' }}
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:

run_tests_base:
name: "🐍[pytest]${{ matrix.value }}"
runs-on: [ self-hosted, linux, k8s-runner-light ]
runs-on: [ self-hosted, linux, light ]
permissions:
packages: write
contents: read
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:

run_tests_no_compose:
name: "🐍[pytest][no_compose]${{ matrix.value }}"
runs-on: [ self-hosted, linux, k8s-runner-no-compose ]
runs-on: [ self-hosted, linux, light ]
permissions:
packages: write
contents: read
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:

run_tests_fat:
name: "🐍[pytest][fat]${{ matrix.value }}"
runs-on: [ self-hosted, linux, k8s-runner-fat ]
runs-on: [ self-hosted, linux, fat ]
permissions:
packages: write
contents: read
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:
run_tests_ext_public:
name: "🐍[pytest][ext_public]${{ matrix.value }}"
# using light runners for now, TBD: change when we have ext_public
runs-on: [ self-hosted, linux, k8s-runner-ext-public ]
runs-on: [ self-hosted, linux, light ]
permissions:
packages: read
contents: read
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
run: bash /src/ci/stop_compose.sh "${{ matrix.value }}" "${{ job.container.network }}" "${{ env.compose_prj }}"

mypy:
runs-on: [ self-hosted, linux, k8s-runner-no-compose ]
runs-on: [ self-hosted, linux, light ]
needs: gh_build_image
container:
# until https://github.com/github/docs/issues/25520 is resolved, using vars
Expand Down Expand Up @@ -504,7 +504,7 @@ jobs:
needs_json: ${{ toJson(needs) }}

codestyle_all:
runs-on: [ self-hosted, linux, k8s-runner-no-compose ]
runs-on: [ self-hosted, linux, light ]
needs: gh_build_image
container:
# until https://github.com/github/docs/issues/25520 is resolved, using vars
Expand Down
Loading