[Gradle Release Plugin] - new version commit: '2021.1-lw2023.1-0.2.9'. #439
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Java 11 Build and Test | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: sudo apt-get install -y x11vnc xvfb | |
- name: Setup java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-disabled: false | |
- name: Test languages | |
run: xvfb-run ./gradlew checkMps | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
TEST-*.xml | |
large_files: "true" | |
report_individual_runs: "true" | |
report_suite_logs: "any" | |
check_run_annotations: all tests, skipped tests | |
action_fail: "true" | |
# - name: Test command-line export | |
# run: xvfb-run ./gradlew testCmdlineExport |