Postgres tests on ubuntu maybe

This commit is contained in:
Mark McDowall 2024-01-03 15:57:03 -08:00
parent 8bbacc48e2
commit b0fce7d6d6
2 changed files with 31 additions and 0 deletions

View File

@ -4,6 +4,8 @@ name: Run test on DLLs matching the specified pattern
description: Runs unit/integration tests
inputs:
use_postgres:
description: 'Whether postgres should be used for the database'
platform:
description: 'OS platform that the tests are running on'
required: true
@ -23,6 +25,19 @@ runs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Setup Postgres
if: ${{ inputs.use_postgres }}
uses: ikalnytskyi/action-setup-postgres@v4
- name: Setup Environment Variables
if: ${{ inputs.use_postgres }}
shell: bash
run: |
echo "Sonarr__Postgres__Host=localhost" >> "$GITHUB_ENV"
echo "Sonarr__Postgres__Port=5432" >> "$GITHUB_ENV"
echo "Sonarr__Postgres__User=postgres" >> "$GITHUB_ENV"
echo "Sonarr__Postgres__Password=postgres" >> "$GITHUB_ENV"
- name: Download Artifact
uses: actions/download-artifact@v4
with:

View File

@ -122,3 +122,19 @@ jobs:
artifact: ${{ matrix.artifact }}
pattern: Sonarr.*.Test.dll
filter: ${{ matrix.filter }}
unit_test_postgres:
needs: backend
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Test
uses: ./.github/actions/test
with:
platform: ubuntu-latest
artifact: tests-linux-x64
pattern: Sonarr.*.Test.dll
filter: TestCategory!=ManualTest&TestCategory!=WINDOWS&TestCategory!=IntegrationTest&TestCategory!=AutomationTest
use_postgres: true