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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Enable running shell scripts from bash on Windows
*.sh eol=lf
*.py eol=lf
42 changes: 42 additions & 0 deletions .github/workflows/Configuration-ConfigurationProviders.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Configuration: ConfigurationProviders"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Configuration/src/ConfigurationProviders/**
- .github/workflows/configuration.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Configuration
sample: ConfigurationProviders
OS: windows
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Configuration
sample: ConfigurationProviders
OS: linux
Original file line number Diff line number Diff line change
@@ -1,26 +1,17 @@
name: MySQL
name: "Connectors: MySql"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
paths:
- .gitattributes
- .gitignore
- behave*
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/MySql/**
- .github/workflows/mysql.yml
- .github/workflows/shared-test-workflow.yml
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
Expand All @@ -33,10 +24,19 @@ concurrency:
cancel-in-progress: true

jobs:
echo:
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
runs-on: tpe-nano

steps:
- name: Verify trigger
run: echo "Job was triggered successfully!"
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySql
OS: linux
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySql
OS: windows
42 changes: 42 additions & 0 deletions .github/workflows/Connectors-MySqlEFCore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Connectors: MySqlEFCore"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/MySqlEFCore/**
- .github/workflows/mysql-efcore.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySqlEFCore
OS: windows
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySqlEFCore
OS: linux
42 changes: 42 additions & 0 deletions .github/workflows/Connectors-PostgreSql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Connectors: PostgreSQL"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/PostgreSql/**
- .github/workflows/postgresql.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: windows
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: linux
42 changes: 42 additions & 0 deletions .github/workflows/Connectors-PostgreSqlEFCore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Connectors: PostgreSqlEFCore"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/PostgreSqlEFCore/**
- .github/workflows/postgresql-efcore.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSqlEFCore
OS: linux
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSqlEFCore
OS: windows
42 changes: 42 additions & 0 deletions .github/workflows/Connectors-RabbitMQ.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Connectors: RabbitMQ"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/RabbitMQ/**
- .github/workflows/rabbitmq.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: RabbitMQ
OS: linux
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: RabbitMQ
OS: windows
42 changes: 42 additions & 0 deletions .github/workflows/Connectors-Redis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Connectors: Redis"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/Redis/**
- .github/workflows/redis.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: Redis
OS: linux
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: Redis
OS: windows
33 changes: 33 additions & 0 deletions .github/workflows/FileShares-FileSharesWeb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "FileShares: FileSharesWeb"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- FileShares/src/FileSharesWeb/**
- .github/workflows/networkfileshares.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: FileShares
sample: FileSharesWeb
OS: windows
42 changes: 42 additions & 0 deletions .github/workflows/Management-ActuatorApi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Management: ActuatorApi"

on:
workflow_dispatch:
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Management/src/ActuatorApi/**
- .github/workflows/management.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Management
sample: ActuatorApi
OS: linux
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Management
sample: ActuatorApi
OS: windows
Loading