Skip to content

Mobile/CC

Mobile/CC #24925

name: Mobile/CC
permissions:
contents: read
on:
workflow_run:
workflows:
- Request
types:
- completed
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
load:
secrets:
app-key: ${{ secrets.ENVOY_CI_APP_KEY }}
app-id: ${{ secrets.ENVOY_CI_APP_ID }}
lock-app-key: ${{ secrets.ENVOY_CI_MUTEX_APP_KEY }}
lock-app-id: ${{ secrets.ENVOY_CI_MUTEX_APP_ID }}
permissions:
actions: read
contents: read
packages: read
pull-requests: read
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/_load.yml
with:
check-name: mobile-cc
cc-tests:
permissions:
contents: read
packages: read
if: ${{ fromJSON(needs.load.outputs.request).run.mobile-cc }}
needs: load
name: cc-tests
uses: ./.github/workflows/_mobile_container_ci.yml
with:
args: >-
test
--config=mobile-remote-ci-cc
//test/cc/...
request: ${{ needs.load.outputs.request }}
target: cc-tests
timeout-minutes: 120
request:
secrets:
app-id: ${{ secrets.ENVOY_CI_APP_ID }}
app-key: ${{ secrets.ENVOY_CI_APP_KEY }}
permissions:
actions: read
contents: read
if: >-
${{ always()
&& github.event.workflow_run.conclusion == 'success'
&& fromJSON(needs.load.outputs.request).run.mobile-cc }}
needs:
- load
- cc-tests
uses: ./.github/workflows/_finish.yml
with:
needs: ${{ toJSON(needs) }}