Skip to content
Merged
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
15 changes: 13 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Build & Test

on:
pull_request
pull_request:
branches:
- develop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this run on main too?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We shouldn't be raising PRs to main anymore with the new automated releases.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense. Thanks for clarifying.


jobs:
unit-functional:
name: ${{ matrix.os }} / ${{ matrix.python }} / unit-functional
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -29,6 +32,7 @@ jobs:

node-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / node / npm ${{ matrix.npm }}.x
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -59,6 +63,7 @@ jobs:

node-esbuild-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / esbuild / npm ${{ matrix.npm }}.x
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -89,6 +94,7 @@ jobs:

golang-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / golang
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -113,6 +119,7 @@ jobs:

java-maven-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / java maven
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -138,6 +145,7 @@ jobs:

java-gradle-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / java gradle
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false
Expand Down Expand Up @@ -165,6 +173,7 @@ jobs:

custom-make-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / custom make
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -186,6 +195,7 @@ jobs:

python-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / python
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -207,6 +217,7 @@ jobs:

ruby-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / ruby-${{ matrix.ruby }}
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -221,7 +232,6 @@ jobs:
ruby:
- "3.1"
- "2.7"

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -235,6 +245,7 @@ jobs:

dotnet-integration:
name: ${{ matrix.os }} / ${{ matrix.python }} / dotnet
if: github.repository == 'aws/aws-lambda-builders'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down