Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
w1am committed Jan 6, 2025
1 parent bd6b10f commit 8d8f07f
Show file tree
Hide file tree
Showing 346 changed files with 5,039 additions and 14,036 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,11 @@ jobs:
dotnet test --configuration ${{ matrix.configuration }} --blame \
--logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
--framework ${{ matrix.framework }} \
test/EventStore.Client.${{ inputs.test }}.Tests
test/EventStore.Client.Tests
# run: |
# sudo ./gencert.sh
# dotnet test --configuration ${{ matrix.configuration }} --blame \
# --logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
# --framework ${{ matrix.framework }} \
# test/EventStore.Client.${{ inputs.test }}.Tests
8 changes: 4 additions & 4 deletions .github/workflows/dispatch-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ on:
jobs:
test:
uses: ./.github/workflows/base.yml
strategy:
fail-fast: false
matrix:
test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
# strategy:
# fail-fast: false
# matrix:
# test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
name: Test CE (${{ inputs.docker-tag }})
with:
docker-tag: ${{ inputs.docker-tag }}
Expand Down
58 changes: 29 additions & 29 deletions .github/workflows/dispatch-ee.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Dispatch EE

on:
workflow_dispatch:
inputs:
docker-tag:
description: "Docker tag"
required: true
type: string
docker-image:
description: "Docker image"
required: true
type: string

jobs:
test:
uses: ./.github/workflows/base.yml
strategy:
fail-fast: false
matrix:
test: [ Plugins ]
name: Test EE (${{ inputs.docker-tag }})
with:
docker-tag: ${{ inputs.docker-tag }}
docker-image: ${{ inputs.docker-image }}
test: ${{ matrix.test }}
secrets:
CLOUDSMITH_CICD_USER: ${{ secrets.CLOUDSMITH_CICD_USER }}
CLOUDSMITH_CICD_TOKEN: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}
#name: Dispatch EE
#
#on:
# workflow_dispatch:
# inputs:
# docker-tag:
# description: "Docker tag"
# required: true
# type: string
# docker-image:
# description: "Docker image"
# required: true
# type: string
#
#jobs:
# test:
# uses: ./.github/workflows/base.yml
## strategy:
## fail-fast: false
## matrix:
## test: [ Plugins ]
# name: Test EE (${{ inputs.docker-tag }})
# with:
# docker-tag: ${{ inputs.docker-tag }}
# docker-image: ${{ inputs.docker-image }}
# test: ${{ matrix.test }}
# secrets:
# CLOUDSMITH_CICD_USER: ${{ secrets.CLOUDSMITH_CICD_USER }}
# CLOUDSMITH_CICD_TOKEN: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}
Loading

0 comments on commit 8d8f07f

Please sign in to comment.