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

Update README.md #1

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
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
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: PR Workflow
# If any dependent jobs fails, this WF skips which won't block merging PRs
# calling always() is required for this WF to run all the time
if: github.repository_owner == 'aws' && always()

runs-on: ubuntu-latest
needs:
- unit-functional
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

unit-functional:
name: ${{ matrix.os }} / ${{ matrix.python }} / unit-functional
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -78,7 +78,7 @@ jobs:

node-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / node / npm ${{ matrix.npm }}.x
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

node-esbuild-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / esbuild / npm ${{ matrix.npm }}.x
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

golang-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / golang
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -169,7 +169,7 @@ jobs:

java-maven-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / java maven
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

java-gradle-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / java gradle
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false
Expand All @@ -220,14 +220,14 @@ jobs:
python-version: ${{ matrix.python }}
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: '21'
- run: make init
- run: pytest -vv tests/integration/workflows/java_gradle

custom-make-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / custom make
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -251,7 +251,7 @@ jobs:

python-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / python
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:

ruby-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / ruby
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -306,7 +306,7 @@ jobs:

dotnet-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / dotnet
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -330,7 +330,7 @@ jobs:

rust-cargo-lambda-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / rust-cargo-lambda
if: github.repository_owner == 'aws'

runs-on: ${{ matrix.os }}
env:
CARGO_LAMBDA_VERSION: 0.15.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Lambda Builders currently contains the following workflows
* Typescript with esbuild
* Ruby with Bundler
* Go with Mod
*
* Rust with Cargo

In Addition to above workflows, AWS Lambda Builders also supports *Custom Workflows* through a Makefile.
Expand Down
Loading