env does not exist in gradle grrrv2 #6210
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI with Gradle | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build JGiven on Java ${{ matrix.java }} with Junit ${{matrix.junit}} | |
runs-on: ubuntu-latest | |
env: | |
ANDROID: true | |
strategy: | |
matrix: | |
java: [ '11', '17', '19'] | |
junit: ['4.13.2'] | |
steps: | |
- name: Ensure firefox is installed | |
run: sudo apt-get install firefox | |
- uses: actions/[email protected] | |
- name: Set up JDK ${{matrix.java}} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{matrix.java}} | |
distribution: 'adopt' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle and Junit ${{matrix.junit}} | |
env: | |
JUNIT_VERSION: ${{matrix.junit}} | |
run: "./gradlew -i -s check -DjunitVersion=${JUNIT_VERSION}" | |
- name: Run Jacoco | |
if: ${{matrix.java == '11' && github.ref == 'refs/heads/master' && github.head_ref == null}} | |
run: ./gradlew overallJacocoReport coveralls | |
- name: Upload test results html files | |
continue-on-error: true | |
if: ${{failure()}} | |
uses: actions/[email protected] | |
with: | |
name: test-report_${{matrix.java}}_${{matrix.junit}} | |
path: /home/runner/work/JGiven/JGiven/*/build/reports/tests | |
if-no-files-found: ignore |