Split the 'prod' workflow up into different isolated workflows

This is required to ensure that cache entries are namespaced correctly
for the integration tests.
This commit is contained in:
Daz DeBoer 2021-09-12 10:52:53 -06:00
parent cae99bf6d9
commit d5cd9d86a1
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
3 changed files with 76 additions and 49 deletions

37
.github/workflows/failure-cases.yml vendored Normal file
View file

@ -0,0 +1,37 @@
# 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
gradle-cache-enabled: no