WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Bump the all-dependencies group with 10 updates #3409

Bump the all-dependencies group with 10 updates

Bump the all-dependencies group with 10 updates #3409

Workflow file for this run

name: Python Client
on:
push:
tags:
- v*
branches:
- master
paths:
- 'client/python/**'
- 'build/python-client/**'
- 'pkg/api/*.proto'
- '.github/workflows/python-client.yml'
- 'docs/python_armada_client.md'
- 'scripts/build-python-client.sh'
- 'makefile'
- '.github/workflows/python-tests/*'
- './magefiles/tests.go'
- './magefiles/python.go'
pull_request:
branches-ignore:
- gh-pages
paths:
- 'client/python/**'
- 'build/python-client/**'
- 'pkg/api/*.proto'
- '.github/workflows/python-client.yml'
- 'docs/python_armada_client.md'
- 'scripts/build-python-client.sh'
- 'makefile'
- '.github/workflows/python-tests/*'
- './magefiles/tests.go'
- './magefiles/python.go'
jobs:
python-client-tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
include:
- tox-env: 'py39'
python-version: '3.9'
- tox-env: 'py310'
python-version: '3.10'
- tox-env: 'py311'
python-version: '3.11'
- tox-env: 'py312'
python-version: '3.12'
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: ./.github/actions/setup-go-cache
with:
cache-prefix: python-client-tox
- uses: ./.github/workflows/python-tests
with:
python-version: ${{ matrix.python-version }}
tox-env: ${{ matrix.tox-env }}
path: 'client/python'
github-token: ${{ secrets.GITHUB_TOKEN }}
python-client-integration-tests:
if: github.repository_owner == 'armadaproject'
# As of December 2022, using 8vcpu runners is slower overall,
# due to longer queue times.
runs-on: ubuntu-22.04
env:
# This variable is picked up by the goreleaser config.
DOCKER_BUILDX_BUILDER: "builder"
steps:
- uses: actions/checkout@v6
- run: docker buildx create --name ${DOCKER_BUILDX_BUILDER} --driver docker-container --use
- run: docker buildx install
- name: Setup Go
uses: ./.github/actions/setup-go-cache
with:
cache-prefix: python-client-integration-tests
cache-tools: true
- name: Setup and run integration tests
run: |
# Manually create folders to ensure perms are correct.
mkdir -p .kube/internal
mkdir -p .kube/external
go run github.com/magefile/[email protected] -v localdev minimal
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: '23.3'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: go run github.com/magefile/[email protected] -v teste2epython