Fix remaining blackbox test issues (#22759) #11
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: Blackbox Tests | |
on: | |
push: | |
branches: | |
- main | |
- next | |
paths: | |
- api/** | |
- tests/blackbox/** | |
- packages/** | |
- package.json | |
- pnpm-lock.yaml | |
- .github/workflows/blackbox.yml | |
concurrency: | |
group: blackbox-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
NODE_OPTIONS: --max_old_space_size=6144 | |
jobs: | |
common: | |
name: common | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Prepare | |
uses: ./.github/actions/prepare | |
- name: Start services | |
run: | |
docker compose -f tests/blackbox/docker-compose.yml up auth-saml redis minio minio-mc -d --quiet-pull --wait | |
- name: Run tests | |
run: TEST_DB=sqlite3 pnpm run test:blackbox -- --project common | |
db: | |
name: ${{ matrix.vendor }} | |
runs-on: ${{ matrix.vendor == 'mssql' && 'ubuntu-20.04' || 'ubuntu-latest' }} | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
vendor: | |
- sqlite3 | |
- postgres | |
- mysql | |
- maria | |
- mssql | |
- oracle | |
- cockroachdb | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Prepare | |
uses: ./.github/actions/prepare | |
- name: Start mssql | |
if: matrix.vendor == 'mssql' | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc | |
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/20.04/mssql-server-2019.list)" | |
sudo apt-get update | |
sudo apt-get install -y mssql-server | |
sudo /opt/mssql/bin/mssql-conf set network.tcpport 6105 | |
sudo MSSQL_PID='express' MSSQL_SA_PASSWORD='Test@123' /opt/mssql/bin/mssql-conf -n setup accept-eula | |
- name: Start database | |
if: matrix.vendor != 'sqlite3' && matrix.vendor != 'mssql' | |
run: docker compose -f tests/blackbox/docker-compose.yml up ${{ matrix.vendor }} -d --quiet-pull --wait | |
- name: Start services | |
run: | |
docker compose -f tests/blackbox/docker-compose.yml up auth-saml redis minio minio-mc -d --quiet-pull --wait | |
- name: Run tests | |
run: TEST_DB=${{ matrix.vendor }} pnpm run test:blackbox -- --project db |