-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): regression detection v2 followups (#21594)
* chore(ci): regression v2 followups * remove merge group condition * actions/checkout@v4 * fix casing warning
- Loading branch information
Showing
2 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ jobs: | |
outputs: | ||
source_changed: ${{ steps.filter.outputs.SOURCE_CHANGED }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Collect file changes | ||
id: changes | ||
|
@@ -152,7 +152,6 @@ jobs: | |
# wouldn't likely introduce regressions. | ||
- name: Determine if should not run due to irrelevant file changes | ||
id: filter | ||
if: github.event_name == 'merge_group' | ||
env: | ||
ALL: ${{ steps.changes.outputs.all_changed_files }} | ||
IGNORE: ${{ steps.changes.outputs.ignore_files }} | ||
|
@@ -175,6 +174,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: check-source-changed | ||
if: ${{ needs.check-source-changed.outputs.source_changed }} | ||
steps: | ||
- name: Gate check passed | ||
run: echo "Source code changes detected, proceeding with regression tests" | ||
|
||
## | ||
## BUILD | ||
|
@@ -190,9 +192,9 @@ jobs: | |
steps: | ||
- uses: colpal/actions-clean@v1 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.resolve-inputs.outputs.baseline-sha }} | ||
path: baseline-vector | ||
|
@@ -229,9 +231,9 @@ jobs: | |
steps: | ||
- uses: colpal/actions-clean@v1 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.resolve-inputs.outputs.comparison-sha }} | ||
path: comparison-vector | ||
|
@@ -384,7 +386,7 @@ jobs: | |
-f context='Regression Detection Suite / submission' \ | ||
-f target_url=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.resolve-inputs.outputs.comparison-sha }} | ||
|
||
|
@@ -499,7 +501,7 @@ jobs: | |
- should-run-gate | ||
- resolve-inputs | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/[email protected] | ||
|
@@ -590,7 +592,7 @@ jobs: | |
-f context='Regression Detection Suite / analyze-experiment' \ | ||
-f target_url=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.resolve-inputs.outputs.comparison-sha }} | ||
|
||
|
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