Skip to content

Re-enable TSAN

Re-enable TSAN #2469

# Copyright Dave Verwer, Sven A. Schmidt, and other contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Query Performance Test
on:
workflow_dispatch:
push:
jobs:
test-linux:
name: Query Performance Test
runs-on: ubuntu-latest
continue-on-error: true
container:
image: registry.gitlab.com/finestructure/spi-base:0.11.0
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install unzip
run: apt-get update && apt-get install -y unzip
- name: Run tests
run: |
echo "
DATABASE_HOST=${{ secrets.STAGING_DATABASE_HOST }}
DATABASE_NAME=spi_dev
DATABASE_PASSWORD=${{ secrets.STAGING_DATABASE_PASSWORD }}
DATABASE_PORT=5432
DATABASE_USE_TLS=true
DATABASE_USERNAME=spi_dev
" >> .env.staging
make test-query-performance