mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 16:20:59 -05:00
37 lines
930 B
YAML
37 lines
930 B
YAML
# Run builds under certain failure conditions to allow the output to be manually inspected.
|
|
# These build invocations are informational only, and are expected to fail
|
|
name: failure-cases
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
|
|
|
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
|