You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### What changes were proposed in this pull request?
This PR aims to use `Swift 6.2` for all Linux CIs.
### Why are the changes needed?
To improve the CI stability on Linux environment by using the latest `Swift 6.2` version.
### Does this PR introduce _any_ user-facing change?
No, this is a CI change.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes#255 from dongjoon-hyun/SPARK-54053.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/build_and_test.yml
+6-17Lines changed: 6 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -77,25 +77,14 @@ jobs:
77
77
- uses: actions/checkout@v5
78
78
- name: Build
79
79
run: |
80
-
docker run swift:6.1 uname -a
81
-
docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
80
+
docker run swift:6.2 uname -a
81
+
docker run -v $PWD:/spark -w /spark swift:6.2 swift build -c release
82
82
83
-
# setup-swift doesn't support ARM linux yet.
84
83
build-ubuntu-arm:
85
84
runs-on: ubuntu-24.04-arm
86
85
timeout-minutes: 20
87
86
steps:
88
87
- uses: actions/checkout@v5
89
-
- name: Build
90
-
run: |
91
-
docker run swift:6.1 uname -a
92
-
docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
93
-
94
-
build-ubuntu-swift62:
95
-
runs-on: ubuntu-latest
96
-
timeout-minutes: 20
97
-
steps:
98
-
- uses: actions/checkout@v5
99
88
- name: Build
100
89
run: |
101
90
docker run swift:6.2 uname -a
@@ -117,8 +106,8 @@ jobs:
117
106
- uses: actions/checkout@v5
118
107
- name: Build
119
108
run: |
120
-
docker run swift:6.1 uname -a
121
-
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.1 swift test --no-parallel -c release
109
+
docker run swift:6.2 uname -a
110
+
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.2 swift test --no-parallel -c release
122
111
123
112
integration-test-ubuntu-spark41:
124
113
runs-on: ubuntu-latest
@@ -136,8 +125,8 @@ jobs:
136
125
- uses: actions/checkout@v5
137
126
- name: Build
138
127
run: |
139
-
docker run swift:6.1 uname -a
140
-
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.1 swift test --no-parallel -c release
128
+
docker run swift:6.2 uname -a
129
+
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.2 swift test --no-parallel -c release
0 commit comments