Replace Dolt CI testing references in AGENT.md with reference to dolt_tests
#5269
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Bats Unix | |
| 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@v4 | |
| 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 -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 -s lambda_skip -use-aws-environment-credentials -F tap . | |
| working-directory: ./integration-tests/bats |