Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hnnasit authored Sep 16, 2024
1 parent be29a9f commit 29a7d99
Showing 1 changed file with 13 additions and 13 deletions.
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

0 comments on commit 29a7d99

Please sign in to comment.