Skip to content

Commit ad373aa

Browse files
committed
use 22.04 for native builds
1 parent 1d639fb commit ad373aa

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
OUT: ${{ steps.get-tag.outputs.sha }}
4444

4545
build_native_linux:
46-
runs-on: ubuntu-24.04
46+
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
47+
runs-on: ubuntu-22.04
4748
timeout-minutes: 60
4849
name: Build Linux Native backend for Dev image
4950
container:

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
run: ./node_modules/.bin/lerna publish from-package --yes
6868

6969
native_linux:
70-
runs-on: ubuntu-24.04
70+
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
71+
runs-on: ubuntu-22.04
7172
timeout-minutes: 60
7273
name: Build native Linux ${{ matrix.node-version }} ${{ matrix.target }} Python ${{ matrix.python-version }}
7374
strategy:

.github/workflows/rust-cubesql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111

112112
native_linux:
113113
needs: [lint]
114-
runs-on: ubuntu-24.04
114+
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
115+
runs-on: ubuntu-22.04
115116
timeout-minutes: 60
116117
name: Build Linux GNU ${{ matrix.node-version }}.x ${{ matrix.target }} with Python ${{ matrix.python-version }}
117118
strategy:

.github/workflows/rust-cubestore-master.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,18 +277,19 @@ jobs:
277277
- x86_64-unknown-linux-musl
278278
- aarch64-unknown-linux-gnu
279279
include:
280-
- os: ubuntu-24.04
280+
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
281+
- os: ubuntu-22.04
281282
target: x86_64-unknown-linux-gnu
282283
executable_name: cubestored
283284
strip: true
284285
compress: false
285-
- os: ubuntu-24.04
286+
- os: ubuntu-22.04
286287
target: x86_64-unknown-linux-musl
287288
executable_name: cubestored
288289
strip: true
289290
# cubestored: CantPackException: bad DT_HASH nbucket=0x344 len=0x1890
290291
compress: false
291-
- os: ubuntu-24.04
292+
- os: ubuntu-22.04
292293
target: aarch64-unknown-linux-gnu
293294
executable_name: cubestored
294295
# Unable to recognise the format of the input file `rust/cubestore/target/aarch64-unknown-linux-gnu/release/cubestored'

.github/workflows/rust-cubestore.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,18 +208,19 @@ jobs:
208208
- x86_64-unknown-linux-musl
209209
- aarch64-unknown-linux-gnu
210210
include:
211-
- os: ubuntu-24.04
211+
# Please use minimal possible version of ubuntu, because it produces constraint on glibc
212+
- os: ubuntu-22.04
212213
target: x86_64-unknown-linux-gnu
213214
executable_name: cubestored
214215
strip: true
215216
compress: false
216-
- os: ubuntu-24.04
217+
- os: ubuntu-22.04
217218
target: x86_64-unknown-linux-musl
218219
executable_name: cubestored
219220
strip: true
220221
# cubestored: CantPackException: bad DT_HASH nbucket=0x344 len=0x1890
221222
compress: false
222-
- os: ubuntu-24.04
223+
- os: ubuntu-22.04
223224
target: aarch64-unknown-linux-gnu
224225
executable_name: cubestored
225226
# Unable to recognise the format of the input file `rust/cubestore/target/aarch64-unknown-linux-gnu/release/cubestored'

0 commit comments

Comments
 (0)