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

configure aws-spi-pekko-http integration tests in nightly builds #832

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 2 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
11 changes: 7 additions & 4 deletions .github/workflows/nightly-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
pull_request:

permissions: {}

Expand Down Expand Up @@ -56,12 +57,14 @@ jobs:
- name: Cache Coursier cache
uses: coursier/cache-action@v6

- name: S3 Integration tests
- name: AWS connectors Integration tests
env:
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
jtjeferreira marked this conversation as resolved.
Show resolved Hide resolved
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
run: |-
sbt \
-Dpekko.connectors.s3.aws.credentials.provider=static \
-Dpekko.connectors.s3.aws.credentials.access-key-id=${{ secrets.AWS_ACCESS_KEY }} \
-Dpekko.connectors.s3.aws.credentials.secret-access-key=${{ secrets.AWS_SECRET_KEY }} \
-Dpekko.stream.connectors.s3.scaladsl.AWSS3IntegrationSpec.enableListAllMyBucketsTests=false \
-Dpekko.stream.connectors.s3.scaladsl.AWSS3IntegrationSpec.enableMFATests=false \
+ "s3/Test/runMain org.scalatest.tools.Runner -o -s org.apache.pekko.stream.connectors.s3.scaladsl.AWSS3IntegrationSpec"
sbt \
+ "aws-spi-pekko-http/it:test"
Loading