mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 08:41:01 -05:00
4f616f683a
This change to the integration tests should properly isolate multiple runs of the same job. Previously, some jobs would fail if you attempted to re-run them via the UI, because the cache entries would be re-used from the previous run.
34 lines
791 B
YAML
34 lines
791 B
YAML
name: Execute failure cases
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
|
|
|
jobs:
|
|
|
|
wrapper-missing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Test wrapper missing
|
|
uses: ./
|
|
continue-on-error: true
|
|
with:
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
arguments: help
|
|
|
|
bad-configuration:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Test bad config value
|
|
uses: ./
|
|
continue-on-error: true
|
|
with:
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
arguments: help
|
|
cache-disabled: yes
|