Skip to content
Open
Show file tree
Hide file tree
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
46 changes: 41 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- java-maven-integration
- java-gradle-integration
- custom-make-integration
- python-integration
- python-pip-integration
- python-uv-integration
- ruby-integration
- dotnet-integration
- rust-cargo-lambda-integration
Expand All @@ -44,7 +45,8 @@ jobs:
needs.java-maven-integration.result != 'success' ||
needs.java-gradle-integration.result != 'success' ||
needs.custom-make-integration.result != 'success' ||
needs.python-integration.result != 'success' ||
needs.python-pip-integration.result != 'success' ||
needs.python-uv-integration.result != 'success' ||
needs.ruby-integration.result != 'success' ||
needs.dotnet-integration.result != 'success' ||
needs.rust-cargo-lambda-integration.result != 'success'
Expand Down Expand Up @@ -253,8 +255,37 @@ jobs:
- run: make init
- run: pytest -vv tests/integration/workflows/custom_make

python-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / python
python-pip-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / python-pip
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools
if: ${{ matrix.os }} == 'ubuntu-latest' && ${{ matrix.python }} == '3.12'
- run: make init
- run: pytest -vv tests/integration/workflows/python_pip

python-uv-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / python-uv
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -279,8 +310,13 @@ jobs:
python -m pip install --upgrade pip
pip install --upgrade setuptools
if: ${{ matrix.os }} == 'ubuntu-latest' && ${{ matrix.python }} == '3.12'
# Install UV for python_uv workflow tests
- name: Install UV
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- run: make init
- run: pytest -vv tests/integration/workflows/python_pip
- run: pytest -vv tests/integration/workflows/python_uv

ruby-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / ruby
Expand Down
1 change: 1 addition & 0 deletions aws_lambda_builders/workflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
import aws_lambda_builders.workflows.nodejs_npm
import aws_lambda_builders.workflows.nodejs_npm_esbuild
import aws_lambda_builders.workflows.python_pip
import aws_lambda_builders.workflows.python_uv
import aws_lambda_builders.workflows.ruby_bundler
import aws_lambda_builders.workflows.rust_cargo
Loading