Skip to content

Commit e94e428

Browse files
committed
Added develocity access key setup to github actions (maven) workflows
1 parent bf508af commit e94e428

File tree

8 files changed

+24
-0
lines changed

8 files changed

+24
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
permissions:
2727
contents: read
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
runs-on: ubuntu-22.04

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
permissions:
2727
contents: read
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
if: github.repository == 'apache/cloudstack'

.github/workflows/codecov.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2727
cancel-in-progress: true
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
if: github.repository == 'apache/cloudstack'

.github/workflows/linter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2727
cancel-in-progress: true
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
pre-commit:
3134
name: Run pre-commit

.github/workflows/main-sonar-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ permissions:
2626
contents: read # to fetch code (actions/checkout)
2727
pull-requests: write # for sonar to comment on pull-request
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
if: github.repository == 'apache/cloudstack'

.github/workflows/rat.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
permissions:
2727
contents: read
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
runs-on: ubuntu-22.04

.github/workflows/sonar-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ concurrency:
2727
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
2828
cancel-in-progress: true
2929

30+
env:
31+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
32+
3033
jobs:
3134
build:
3235
if: github.repository == 'apache/cloudstack' && github.event.pull_request.head.repo.full_name == github.repository

.github/workflows/ui.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ concurrency:
2626
permissions:
2727
contents: read
2828

29+
env:
30+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
31+
2932
jobs:
3033
build:
3134
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)