Skip to content
Open
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
64 changes: 64 additions & 0 deletions .github/workflows/ci-lambdabats-unix-adaptive.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Test Bats Unix (Adaptive Encoding)

on:
pull_request:
branches: [ main ]
paths:
- '**/*'
- 'go/**'
- 'integration-tests/**'

concurrency:
group: ci-lambdabats-unix-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
name: Bats tests, run with lambdabats
defaults:
run:
shell: bash
runs-on: ubuntu-22.04
strategy:
fail-fast: true
env:
use_credentials: ${{ secrets.AWS_SECRET_ACCESS_KEY != '' && secrets.AWS_ACCESS_KEY_ID != '' }}
steps:
- name: Conditionally Set ENV VARS for AWS tests
if: ${{ env.use_credentials == 'true' }}
run: |
echo "AWS_SDK_LOAD_CONFIG=1" >> $GITHUB_ENV
echo "AWS_REGION=us-west-2" >> $GITHUB_ENV
echo "DOLT_BATS_AWS_TABLE=dolt-ci-bats-manifests-us-west-2" >> $GITHUB_ENV
echo "DOLT_BATS_AWS_BUCKET=dolt-ci-bats-chunks-us-west-2" >> $GITHUB_ENV
echo "DOLT_BATS_AWS_EXISTING_REPO=aws_remote_bats_tests__dolt__" >> $GITHUB_ENV
- name: Configure AWS Credentials
if: ${{ env.use_credentials == 'true' }}
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
role-duration-seconds: 10800 # 3 hours D:
- uses: actions/checkout@v6
if: ${{ env.use_credentials == 'true' }}
- name: Setup Go 1.x
uses: actions/setup-go@v5
if: ${{ env.use_credentials == 'true' }}
with:
go-version-file: go/go.mod
id: go
- name: install lambdabats
if: ${{ env.use_credentials == 'true' }}
run: go install github.com/dolthub/lambdabats/lambdabats@latest
- name: Test all Unix
if: ${{ env.use_credentials == 'true' }}
run: |
lambdabats -env DOLT_USE_ADAPTIVE_ENCODING=true -use-aws-environment-credentials -s lambda_skip -F tap .
working-directory: ./integration-tests/bats
- name: Test all Unix, SQL_ENGINE=remote-engine
if: ${{ env.use_credentials == 'true' }}
run: |
lambdabats -env SQL_ENGINE=remote-engine -env DOLT_USE_ADAPTIVE_ENCODING=true -s lambda_skip -use-aws-environment-credentials -F tap .
working-directory: ./integration-tests/bats
Loading