TT-13421 create indexes on sharded sql pumps #1670
This file contains 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: CI tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
TYK_PMP_ANALYTICSSTORAGETYPE: redis | |
TYK_PMP_ANALYTICSSTORAGECONFIG_TYPE: redis | |
TYK_PMP_ANALYTICSSTORAGECONFIG_HOST: localhost | |
TYK_PMP_ANALYTICSSTORAGECONFIG_PORT: 6379 | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Tyk Pump | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Fetch base branch | |
if: ${{ github.event_name == 'pull_request' }} | |
run: git fetch origin ${{ github.base_ref }} | |
- name: golangci-lint | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --out-format=checkstyle:golanglint.xml --timeout=300s --max-issues-per-linter=0 --max-same-issues=0 --new-from-rev=origin/${{ github.base_ref }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: golangcilint | |
retention-days: 1 | |
path: | | |
golanglint.xml | |
test: | |
name: Go ${{ matrix.go }} tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
redis-version: [5] | |
mongodb-version: [4.2] | |
go: [1.22.7] | |
steps: | |
- name: Checkout Tyk Pump | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Setup Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install Dependencies and basic hygiene test | |
id: hygiene | |
run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
- name: Fetch base branch | |
if: ${{ github.event_name == 'pull_request' }} | |
run: git fetch origin ${{ github.base_ref }} | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: ${{ matrix.redis-version }} | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: "${{ matrix.mongodb-version }}" | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run Pump Tests | |
id: ci-tests | |
run: | | |
./bin/ci-test.sh 2>&1 | tee test.log | |
result_code=${PIPESTATUS[0]} | |
echo "log=$(sed -ze 's/%/%25/g;s/\n/%0A/g' test.log)" >> $GITHUB_OUTPUT | |
exit $result_code |