2020-06-13 07:14:52 -04:00
|
|
|
# make sure the action works on a clean machine without building
|
|
|
|
name: prod
|
|
|
|
|
|
|
|
on:
|
2020-06-15 14:03:30 -04:00
|
|
|
pull_request:
|
2020-06-13 07:14:52 -04:00
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
2020-06-14 06:22:21 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 07:14:52 -04:00
|
|
|
steps:
|
2020-06-13 07:17:04 -04:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2020-06-13 08:33:32 -04:00
|
|
|
- name: Test wrapper
|
2020-06-13 07:17:04 -04:00
|
|
|
uses: ./
|
2020-06-13 07:14:52 -04:00
|
|
|
with:
|
|
|
|
wrapper-directory: __tests__/data/basic
|
|
|
|
build-root-directory: __tests__/data/basic
|
2020-06-15 09:57:47 -04:00
|
|
|
dependencies-cache-enabled: true
|
2020-06-15 09:58:50 -04:00
|
|
|
configuration-cache-enabled: true
|
2020-06-15 06:59:55 -04:00
|
|
|
arguments: test
|
2020-06-13 08:33:32 -04:00
|
|
|
- name: Test dist download
|
|
|
|
uses: ./
|
|
|
|
with:
|
2020-09-13 07:25:31 -04:00
|
|
|
gradle-version: rc
|
2020-06-13 08:33:32 -04:00
|
|
|
build-root-directory: __tests__/data/basic
|
2020-06-15 09:57:47 -04:00
|
|
|
dependencies-cache-enabled: true
|
2020-06-15 09:58:50 -04:00
|
|
|
configuration-cache-enabled: true
|
2020-06-15 10:03:04 -04:00
|
|
|
arguments: test --configuration-cache
|
2020-06-15 14:08:27 -04:00
|
|
|
- name: Stop Gradle daemon
|
|
|
|
uses: ./
|
|
|
|
with:
|
2020-09-13 07:25:31 -04:00
|
|
|
gradle-version: rc
|
2020-06-15 14:08:27 -04:00
|
|
|
build-root-directory: __tests__/data/basic
|
|
|
|
dependencies-cache-enabled: true
|
|
|
|
configuration-cache-enabled: true
|
|
|
|
arguments: --stop
|