feat: allow deployments to cancel while waiting for services to start… #1209
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: Flake Finder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
flake: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 8 | |
cache: maven | |
- name: Analyze Test Run | |
run: >- | |
pip3 -q install agithub && | |
python3 .github/scripts/flake.py --cmd "sudo -E mvn -ntp -U verify" -i 10 -ff --token "${{ github.token }}" | |
--out-dir "failed_tests/" | |
env: | |
AWS_REGION: us-west-2 | |
- name: Upload Errors | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Flaky test results | |
path: failed_tests/ | |
continue-on-error: true |