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
15 changes: 12 additions & 3 deletions .github/workflows/Configuration-ConfigurationProviders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Configuration: ConfigurationProviders"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Configuration
sample: ConfigurationProviders
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Configuration
sample: ConfigurationProviders
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-MySql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: MySql"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: MySql
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySql
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-MySqlEFCore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: MySqlEFCore"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: MySqlEFCore
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySqlEFCore
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-PostgreSql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: PostgreSQL"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: PostgreSql
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-PostgreSqlEFCore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: PostgreSqlEFCore"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: PostgreSqlEFCore
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSqlEFCore
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-RabbitMQ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: RabbitMQ"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: RabbitMQ
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: RabbitMQ
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Connectors-Redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: Redis"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Connectors
sample: Redis
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: Redis
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
8 changes: 7 additions & 1 deletion .github/workflows/FileShares-FileSharesWeb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: "FileShares: FileSharesWeb"

on:
workflow_dispatch:
inputs:
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +25,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,3 +36,4 @@ jobs:
feature: FileShares
sample: FileSharesWeb
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Management-ActuatorApi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Management: ActuatorApi"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Management
sample: ActuatorApi
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Management
sample: ActuatorApi
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
15 changes: 12 additions & 3 deletions .github/workflows/Security-RedisDataProtection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Security: RedisDataProtection"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -20,7 +29,7 @@ on:
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +40,12 @@ jobs:
feature: Security
sample: RedisDataProtection
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Security
sample: RedisDataProtection
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
Loading