Skip to content

PLATFORM BUSINESS - SSJ REGRESSION TESTS #4

PLATFORM BUSINESS - SSJ REGRESSION TESTS

PLATFORM BUSINESS - SSJ REGRESSION TESTS #4

name: PLATFORM BUSINESS - SSJ REGRESSION TESTS
on:
workflow_dispatch:
schedule:
- cron: '15 12 * * MON-FRI' # 7:15 AM EST (12:15 PM UTC) Monday to Friday
jobs:
build:
runs-on: NCI-WINDOWS
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Run specific runner class
shell: cmd
run: mvn -B -q -Dtest=SSJ_Regression_Runners test
continue-on-error: true
- name: Generate timestamp
id: timestamp
shell: cmd
run: echo "::set-output name=timestamp::%date:~-4,4%-%date:~-10,2%-%date:~-7,2%_%time:~0,2%-%time:~3,2%-%time:~6,2%"
- name: Determine report path
id: reportpath
shell: cmd
run: echo "::set-output name=path::ssj-regression-reports"
- name: Upload Cucumber Report
uses: actions/upload-artifact@v3
if: always()
with:
name: cucumber-report-${{ github.run_number }}-${{ steps.timestamp.outputs.timestamp }}
path: target/ssj-regression-reports/*