mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:17:32 +00:00
chore(workflow): run jobs on public runners (#9643)
# Which Problems Are Solved Build and test workflows are currently running on specific GitHub hosted runners. These is not needed for most worklfows and just costs more. # How the Problems Are Solved Moved all the steps apart from integration-tests to public runners. # Additional Changes None # Additional Context None
This commit is contained in:
3
.github/workflows/console.yml
vendored
3
.github/workflows/console.yml
vendored
@@ -23,8 +23,7 @@ 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:
|
runs-on: ubuntu-latest
|
||||||
group: zitadel-public
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
3
.github/workflows/core-unit-test.yml
vendored
3
.github/workflows/core-unit-test.yml
vendored
@@ -18,8 +18,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on:
|
runs-on: ubuntu-latest
|
||||||
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
@@ -28,8 +28,7 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on:
|
runs-on: ubuntu-latest
|
||||||
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
@@ -10,8 +10,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
browser: [firefox, chrome]
|
browser: [firefox, chrome]
|
||||||
runs-on:
|
runs-on: ubuntu-latest
|
||||||
group: zitadel-public
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout Repository
|
name: Checkout Repository
|
||||||
|
Reference in New Issue
Block a user