mirror of
https://github.com/gradle/actions.git
synced 2025-04-22 18:59:19 +08:00
Try again
This commit is contained in:
parent
227acc2599
commit
673761152e
11
.github/workflows/ci-integ-test.yml
vendored
11
.github/workflows/ci-integ-test.yml
vendored
@ -10,6 +10,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
suite: ${{ steps.determine-suite.outputs.result }}
|
suite: ${{ steps.determine-suite.outputs.result }}
|
||||||
|
is-quick: ${{ steps.determine-suite.outputs.result == 'quick' }}
|
||||||
runner-os: ${{ steps.determine-suite.outputs.result == 'quick' && '["ubuntu-latest"]' || '["ubuntu-latest", "windows-latest", "macos-latest"]' }}
|
runner-os: ${{ steps.determine-suite.outputs.result == 'quick' && '["ubuntu-latest"]' || '["ubuntu-latest", "windows-latest", "macos-latest"]' }}
|
||||||
cache-key-prefix: ${{ steps.determine-suite.outputs.result == 'quick' && '0' || github.run_number }}
|
cache-key-prefix: ${{ steps.determine-suite.outputs.result == 'quick' && '0' || github.run_number }}
|
||||||
steps:
|
steps:
|
||||||
@ -58,11 +59,11 @@ jobs:
|
|||||||
needs: determine-suite
|
needs: determine-suite
|
||||||
steps:
|
steps:
|
||||||
- name: Print suite
|
- name: Print suite
|
||||||
run: echo "Suite = ${{ needs.determine-suite.outputs.suite }}"
|
run: |
|
||||||
- name: Print runner-os
|
echo "Suite = ${{ needs.determine-suite.outputs.suite }}"
|
||||||
run: echo "Runner OS = ${{ needs.determine-suite.outputs.runner-os }}"
|
echo "Quick = ${{ needs.determine-suite.outputs.is-quick }}"
|
||||||
- name: Print cache-key-prefix
|
echo "Runner OS = ${{ needs.determine-suite.outputs.runner-os }}"
|
||||||
run: echo "Cache key prefix = ${{ needs.determine-suite.outputs.cache-key-prefix }}"
|
echo "Cache key prefix = ${{ needs.determine-suite.outputs.cache-key-prefix }}"
|
||||||
|
|
||||||
build-distribution:
|
build-distribution:
|
||||||
needs: determine-suite
|
needs: determine-suite
|
||||||
|
Loading…
x
Reference in New Issue
Block a user