add env prefix.
This commit is contained in:
parent
8c65285ec5
commit
355931a592
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
|||||||
name: Build debug APKs (${{ matrix.target }})
|
name: Build debug APKs (${{ matrix.target }})
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('build-debug-{0}-{1}', matrix.target, CI_GROUP_SUFFIX) }}
|
group: ${{ format('build-debug-{0}-{1}', matrix.target, env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
strategy:
|
strategy:
|
||||||
@ -51,7 +51,7 @@ jobs:
|
|||||||
name: Build unsigned GPlay APKs
|
name: Build unsigned GPlay APKs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('build-release-{0}-{1}', matrix.target, CI_GROUP_SUFFIX) }}
|
group: ${{ format('build-release-{0}-{1}', matrix.target, env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
steps:
|
steps:
|
||||||
|
4
.github/workflows/integration_tests.yml
vendored
4
.github/workflows/integration_tests.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
|||||||
name: App - Build Android Tests
|
name: App - Build Android Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('test-app-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('test-app-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -62,7 +62,7 @@ jobs:
|
|||||||
name: Matrix SDK - Running Integration Tests
|
name: Matrix SDK - Running Integration Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('integration-tests-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('integration-tests-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
6
.github/workflows/quality.yml
vendored
6
.github/workflows/quality.yml
vendored
@ -27,7 +27,7 @@ jobs:
|
|||||||
name: Kotlin Linter
|
name: Kotlin Linter
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('klint-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('klint-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -99,7 +99,7 @@ jobs:
|
|||||||
name: Android Linter
|
name: Android Linter
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('android-lint-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('android-lint-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -126,7 +126,7 @@ jobs:
|
|||||||
name: Lint APK (${{ matrix.target }})
|
name: Lint APK (${{ matrix.target }})
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('apk-lint-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('apk-lint-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
strategy:
|
strategy:
|
||||||
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
|||||||
name: Run Unit Tests
|
name: Run Unit Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ format('unit-tests-{0}', CI_GROUP_SUFFIX) }}
|
group: ${{ format('unit-tests-{0}', env.CI_GROUP_SUFFIX) }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user