Add single test job for windows #1
Workflow file for this run
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
on: [pull_request] | ||
jobs: | ||
tds-tests-windows: | ||
name: TDS Tests on Windows | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build and test with Gradle on Windows | ||
uses: Unidata/thredds-test-action@v2 | ||
with: | ||
java-vendor: 'temurin' | ||
java-version: 14 | ||
servletcontainer: 'tomcat9' | ||
build-tool: 'gradlew' | ||
test-command: '-Dtds.content.root.path=$CONTENT_DIR -Dtds.test.gretty.container=${{ servletcontainer }} --info --stacktrace testAll' | ||
Check failure on line 16 in .github/workflows/tds_windows.yml
|
||
env: | ||
CONTENT_DIR: ${{ github.workspace }}/tds/src/test/content | ||
- uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: tds_windows_JUnit_Results_${{ github.sha }} | ||
path: build/reports/allTests |