Skip to content

Commit f2afabe

Browse files
committed
Move scripts
1 parent eff291e commit f2afabe

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Test all metadata"
1+
name: "Test all metadata for commited version"
22

33
on:
44
workflow_dispatch:
@@ -51,7 +51,6 @@ jobs:
5151
with:
5252
distribution: 'graalvm'
5353
java-version: '21'
54-
github-token: ${{ secrets.GITHUB_TOKEN }}
5554
- name: "🔧 Prepare environment"
5655
uses: graalvm/setup-graalvm@v1
5756
with:
@@ -64,7 +63,7 @@ jobs:
6463
run: |
6564
./gradlew pullAllowedDockerImages -Pcoordinates=${{ matrix.coordinates }}
6665
- name: "Disable docker networking"
67-
run: bash ./.github/workflows/disable-docker.sh
66+
run: bash ./.github/workflows/scripts/disable-docker.sh
6867
- name: "🧪 Run '${{ matrix.coordinates }}' tests"
6968
run: |
7069
./gradlew test -Pcoordinates=${{ matrix.coordinates }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
- name: "🔧 Setup java"
5959
uses: actions/setup-java@v4
6060
with:
61-
distribution: "graalvm"
62-
java-version: "17"
61+
distribution: 'graalvm'
62+
java-version: '21'
6363

6464
- name: "🔧 Prepare environment"
6565
uses: graalvm/setup-graalvm@v1
@@ -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)