mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
15a8123fbc
- Provide a more useful error message when no Gradle wrapper can be located, and 'gradle-version' or 'gradle-executable' is not used. - Add test for case where wrapper is missing. This isn't really a "test" per-se, but this failing build invocation makes it easy to verify the GitHub action behaviour when the build is misconfigured.
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
# make sure the action works on a clean machine without building
|
|
name: prod
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
check:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
include:
|
|
- os: windows-latest
|
|
script-suffix: '.bat'
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Test use Gradle wrapper
|
|
uses: ./
|
|
with:
|
|
build-root-directory: __tests__/samples/basic
|
|
arguments: test
|
|
- name: Test custom wrapper location
|
|
uses: ./
|
|
with:
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
wrapper-directory: __tests__/samples/basic
|
|
arguments: help
|
|
- name: Test use defined Gradle version
|
|
uses: ./
|
|
with:
|
|
gradle-version: 6.9
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
arguments: help
|
|
- name: Test use Gradle version alias
|
|
uses: ./
|
|
with:
|
|
gradle-version: rc
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
arguments: help
|
|
- name: Test use defined Gradle executable
|
|
uses: ./
|
|
with:
|
|
gradle-executable: __tests__/samples/basic/gradlew${{ matrix.script-suffix }}
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
arguments: help
|
|
|
|
failures: # These build invocations are informational only, and are expected to fail
|
|
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
|