Update docker-test-3.yml #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: Test using Docker for CI | |
on: | |
push: | |
branches: [ feature/docker-image ] | |
jobs: | |
docker-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
mode: ['random'] | |
profile: ['no-auth'] | |
steps: | |
- name: Checkout OpenActive.Server.NET | |
uses: actions/checkout@v2 | |
with: | |
path: server | |
- name: Setup .NET Core 3.1.419 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.419 | |
- name: Install OpenActive.Server.NET dependencies | |
if: ${{ matrix.profile != 'no-auth' && matrix.profile != 'single-seller' }} | |
run: dotnet restore ./server/ | |
- name: Build .NET Core Booking Server Reference Implementation | |
run: dotnet build ./server/Examples/BookingSystem.AspNetCore/BookingSystem.AspNetCore.csproj --configuration Release ${{ matrix.profile != 'no-auth' && matrix.profile != 'single-seller' && '--no-restore' || '' }} | |
- name: Start .NET Core Booking Server Reference Implementation | |
run: | | |
dotnet run --no-launch-profile --project ./server/Examples/BookingSystem.AspNetCore/BookingSystem.AspNetCore.csproj --configuration Release --no-build & | |
env: | |
ASPNETCORE_ENVIRONMENT: ${{ matrix.profile }} | |
ApplicationHostBaseUrl: http://host.docker.internal | |
- name: Create output dir | |
run: mkdir -p ./output/ | |
- name: Run OpenActive Test Suite | |
uses: openactive/openactive-test-suite@master | |
with: | |
NODE_CONFIG: | | |
{"ci": true, "broker": {"outputPath": "/github/workspace/output/", "datasetSiteUrl": "http://host.docker.internal:5001/openactive"}, "integrationTests": { "outputPath": "/github/workspace/output/", "conformanceCertificatePath": "/github/workspace/conformance/examples/${{ matrix.profile }}/${{ matrix.mode }}/", "useRandomOpportunities": ${{ matrix.mode == 'random' }}, "conformanceCertificateId": "https://certificates.reference-implementation.openactive.io/examples/${{ matrix.profile }}/${{ matrix.mode }}/" }} | |
NODE_ENV: .example.${{ matrix.profile }} | |
NODE_APP_INSTANCE: ci | |
- name: Upload test output for ${{ matrix.mode }} mode as artifact | |
uses: actions/upload-artifact@v4 | |
if: ${{ success() || failure() }} | |
with: | |
name: core.${{ matrix.mode }}.${{ matrix.profile }} | |
path: ./output/ |