Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,7 @@
test_config_override_path: ${{ env.TEST_CONFIG_OVERRIDE_PATH }}
test_type: ${{ matrix.tests.test_env_vars.TEST_TYPE }}
test_suite: ${{ matrix.tests.test_env_vars.TEST_SUITE }}
test_go_project_path: ${{ matrix.tests.test_go_project_path }}
default_e2e_test_chainlink_image:
${{ matrix.tests.test_env_vars.E2E_TEST_CHAINLINK_IMAGE ||
env.CHAINLINK_IMAGE }}
Expand Down Expand Up @@ -1405,7 +1406,7 @@
GITHUB_RUN_ID: ${{ github.run_id }}
# If needed, override HEAD_REF or REF_NAME
GH_HEAD_REF: ${{ github.head_ref || github.ref_name }}
run: |

Check failure on line 1409 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1409

shellcheck reported issue in this script: SC2155:warning:7:8: Declare and assign separately to avoid masking return values [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1409:9: shellcheck reported issue in this script: SC2155:warning:7:8: Declare and assign separately to avoid masking return values [shellcheck]
#!/usr/bin/env bash
set -euo pipefail

Expand Down Expand Up @@ -1574,7 +1575,7 @@
${{ github.event.pull_request.head.sha }}
FLAKEGUARD_SPLUNK_ENDPOINT: ${{ secrets.FLAKEGUARD_SPLUNK_ENDPOINT }}
FLAKEGUARD_SPLUNK_HEC: ${{ secrets.FLAKEGUARD_SPLUNK_HEC }}
run: |

Check failure on line 1578 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1578

shellcheck reported issue in this script: SC2155:warning:4:8: Declare and assign separately to avoid masking return values [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1578:9: shellcheck reported issue in this script: SC2155:warning:4:8: Declare and assign separately to avoid masking return values [shellcheck]
set -euo pipefail

# Ensure flakeguard is on PATH
Expand Down Expand Up @@ -1650,7 +1651,7 @@
${{ github.event.pull_request.head.sha }}
FAILED_LOGS_URL:
${{ steps.upload-failed-report-with-logs.outputs.artifact-url }}
run: |

Check failure on line 1654 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1654

shellcheck reported issue in this script: SC2155:warning:5:8: Declare and assign separately to avoid masking return values [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1654:9: shellcheck reported issue in this script: SC2155:warning:5:8: Declare and assign separately to avoid masking return values [shellcheck]
#!/usr/bin/env bash
set -euo pipefail

Expand Down Expand Up @@ -1691,7 +1692,7 @@

- name: Add Github Summary For Main Flakeguard Report
if: ${{ env.FLAKEGUARD_ENABLE == 'true' && (success() || failure()) }}
run: |

Check failure on line 1695 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1695

shellcheck reported issue in this script: SC2086:info:6:59: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1695:9: shellcheck reported issue in this script: SC2086:info:6:59: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 1695 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1695

shellcheck reported issue in this script: SC2086:info:8:124: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1695:9: shellcheck reported issue in this script: SC2086:info:8:124: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 1695 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1695

shellcheck reported issue in this script: SC2006:style:9:44: Use $(...) notation instead of legacy backticks `...` [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1695:9: shellcheck reported issue in this script: SC2006:style:9:44: Use $(...) notation instead of legacy backticks `...` [shellcheck]

Check failure on line 1695 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-e2e-tests.yml#L1695

shellcheck reported issue in this script: SC2086:info:9:81: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/run-e2e-tests.yml:1695:9: shellcheck reported issue in this script: SC2086:info:9:81: Double quote to prevent globbing and word splitting [shellcheck]
FILE_SIZE=$(wc -c < ./flakeguard_run_report/main/all-test-summary.md)
echo "File size: $FILE_SIZE bytes"
SIZE_LIMIT=$((1024 * 1024))
Expand Down
Loading