mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 20:47:32 +00:00
ci: set runner group on parallel jobs (#6916)
This commit is contained in:
3
.github/workflows/console.yml
vendored
3
.github/workflows/console.yml
vendored
@@ -23,7 +23,8 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
cache_key: ${{ steps.cache.outputs.cache-primary-key }}
|
cache_key: ${{ steps.cache.outputs.cache-primary-key }}
|
||||||
cache_path: ${{ env.cache_path }}
|
cache_path: ${{ env.cache_path }}
|
||||||
runs-on: ubuntu-latest
|
runs-on:
|
||||||
|
group: zitadel-public
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
4
.github/workflows/core-integration-test.yml
vendored
4
.github/workflows/core-integration-test.yml
vendored
@@ -16,6 +16,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
postgres:
|
postgres:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
# TODO: use runner group as soon as integration tests run in parallel
|
||||||
|
# Currently it only consumes time and adds no value
|
||||||
|
# runs-on:
|
||||||
|
# group: zitadel-public
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
3
.github/workflows/core-unit-test.yml
vendored
3
.github/workflows/core-unit-test.yml
vendored
@@ -15,7 +15,8 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on:
|
||||||
|
group: zitadel-public
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
3
.github/workflows/core.yml
vendored
3
.github/workflows/core.yml
vendored
@@ -31,7 +31,8 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on:
|
||||||
|
group: zitadel-public
|
||||||
outputs:
|
outputs:
|
||||||
cache_key: ${{ steps.cache.outputs.cache-primary-key }}
|
cache_key: ${{ steps.cache.outputs.cache-primary-key }}
|
||||||
cache_path: ${{ env.cache_path }}
|
cache_path: ${{ env.cache_path }}
|
||||||
|
3
.github/workflows/e2e.yml
vendored
3
.github/workflows/e2e.yml
vendored
@@ -9,7 +9,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
browser: [firefox, chrome]
|
browser: [firefox, chrome]
|
||||||
runs-on: ubuntu-latest
|
runs-on:
|
||||||
|
group: zitadel-public
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout Repository
|
name: Checkout Repository
|
||||||
|
Reference in New Issue
Block a user