Skip to content

Commit e6b41c7

Browse files
committed
Move scripts
1 parent eff291e commit e6b41c7

File tree

9 files changed

+6
-6
lines changed

9 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/test-all-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
./gradlew pullAllowedDockerImages -Pcoordinates=${{ matrix.coordinates }}
6666
- name: "Disable docker networking"
67-
run: bash ./.github/workflows/disable-docker.sh
67+
run: bash ./.github/workflows/scripts/disable-docker.sh
6868
- name: "🧪 Run '${{ matrix.coordinates }}' tests"
6969
run: |
7070
./gradlew test -Pcoordinates=${{ matrix.coordinates }}

.github/workflows/test-changed-infrastructure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
./gradlew pullAllowedDockerImages -Pcoordinates=${{ matrix.coordinates }}
7676
7777
- name: "Disable docker networking"
78-
run: bash ./.github/workflows/disable-docker.sh
78+
run: bash ./.github/workflows/scripts/disable-docker.sh
7979

8080
- name: "🔎 Check metadata config files content"
8181
run: |

.github/workflows/test-changed-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: |
6969
./gradlew pullAllowedDockerImages -Pcoordinates=${{ matrix.coordinates }}
7070
- name: "Disable docker networking"
71-
run: bash ./.github/workflows/disable-docker.sh
71+
run: bash ./.github/workflows/scripts/disable-docker.sh
7272
- name: "🔎 Check metadata config files content"
7373
run: |
7474
./gradlew checkMetadataFiles --coordinates=${{ matrix.coordinates }}

.github/workflows/verify-new-library-version-compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,13 @@ jobs:
127127

128128
- name: "Disable docker networking"
129129
if: steps.check_existing_issue.outputs.skip != 'true'
130-
run: bash ./.github/workflows/disable-docker.sh
130+
run: bash ./.github/workflows/scripts/disable-docker.sh
131131

132132
- name: "🧪 Run '${{ env.TEST_COORDINATES }}' tests"
133133
if: steps.check_existing_issue.outputs.skip != 'true'
134134
id: runtests
135135
run: |
136-
bash ./.github/workflows/run-consecutive-tests.sh "${{ env.TEST_COORDINATES }}" '${{ toJson(matrix.item.versions) }}' 2>&1 | tee test_results.txt || true
136+
bash ./.github/workflows/scripts/run-consecutive-tests.sh "${{ env.TEST_COORDINATES }}" '${{ toJson(matrix.item.versions) }}' 2>&1 | tee test_results.txt || true
137137
138138
# Extract successful versions
139139
grep "^PASSED:" test_results.txt | sed 's/PASSED://g' > successful_versions.txt

docs/CI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Below is an overview of the CI pipelines and the configuration they rely on.
66
- Source of truth for style checks: [gradle/checkstyle.xml](../gradle/checkstyle.xml)
77
- GitHub Actions workflows: [.github/workflows](../.github/workflows)/*.yml
88

9-
CI prefetches docker images and temporarily disables Docker networking for test isolation via [`.github/workflows/disable-docker.sh`](../.github/workflows/disable-docker.sh).
9+
CI prefetches docker images and temporarily disables Docker networking for test isolation via [`.github/workflows/disable-docker.sh`](../.github/workflows/scripts/disable-docker.sh).
1010
You usually do not need this locally.
1111

1212
## Types of jobs in the CI

0 commit comments

Comments
 (0)