Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .github/workflows/base.yml
Empty file.
Empty file removed .github/workflows/dispatch-ee.yml
Empty file.
56 changes: 55 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Test

run-name: ${{ inputs.correlation-id && format('Dispatch [{0}]', inputs.correlation-id) || 'Test' }}

on:
workflow_call:
secrets:
Expand Down Expand Up @@ -27,6 +29,44 @@ on:
type: string
required: false

correlation-id:
description: "Optional CorrelationId to identify the workflow run"
type: string
required: false

workflow_dispatch:
inputs:
runtime:
description: "Runtime to test"
required: true
type: choice
default: ci
options:
- previous-lts
- lts
- ci
- qa

registry:
description: "Docker registry to use"
type: string
required: false

image:
description: "Docker image to use"
type: string
required: false

tag:
description: "Docker image tag to use"
type: string
required: false

correlation-id:
description: "Optional CorrelationId to identify the workflow run"
type: string
required: false

jobs:
load_configuration:
uses: ./.github/workflows/load-configuration.yml
Expand Down Expand Up @@ -55,13 +95,27 @@ jobs:
with:
fetch-depth: 0

- name: Login to Cloudsmith
- name: Login to Cloudsmith via docker.cloudsmith.io
uses: docker/login-action@v3
with:
registry: docker.cloudsmith.io
username: ${{ secrets.CLOUDSMITH_CICD_USER }}
password: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}

- name: Login to Cloudsmith via docker.kurrent.io
uses: docker/login-action@v3
with:
registry: docker.kurrent.io
username: ${{ secrets.CLOUDSMITH_CICD_USER }}
password: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}

- name: Login to Cloudsmith via docker.eventstore.com
uses: docker/login-action@v3
with:
registry: docker.eventstore.com
username: ${{ secrets.CLOUDSMITH_CICD_USER }}
password: ${{ secrets.CLOUDSMITH_CICD_TOKEN }}

- name: Install dotnet SDKs
uses: actions/setup-dotnet@v3
with:
Expand Down