Run Tests (Linux) [on schedule] #90
This file contains hidden or 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: Run Tests (Linux) [on schedule] | |
| # On Linux, we run tests in a custom container image. For a scheduled | |
| # run, we have no choice but to use the most recent container image that | |
| # was built. | |
| on: | |
| schedule: | |
| - cron: "0 7 * * *" # at 07:00 every day | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| name: Test | |
| uses: ./.github/workflows/test-linux.yml | |
| with: | |
| image: hub.opensciencegrid.org/pelican_platform/pelican-test:latest-itb | |
| race_detection: true | |
| analyze-runs: | |
| name: Analyze Runs | |
| if: ${{ !cancelled() }} | |
| needs: [run-tests] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Download artifacts | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| bash .github/scripts/analyze-junit-results/download_junit_artifacts.sh "Run Tests (Linux) [on schedule]" | |
| - name: Analyze test results | |
| run: | | |
| python3 .github/scripts/analyze-junit-results/analyze_junit_results.py | |
| cat test-failure-analysis.md >> $GITHUB_STEP_SUMMARY |