Add pull request support for the buildkite to github actions migratio… #1
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: Replication Simulation | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| cluster-redirection: | |
| name: Cluster Redirection Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Go environment | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23.4' | |
| - name: Run simulation | |
| uses: nick-fields/retry@v3 | |
| with: | |
| max_attempts: 2 | |
| timeout_minutes: 30 | |
| command: | | |
| ./simulation/replication/run.sh clusterredirection | |
| - name: Upload test logs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./test.log |