Skip to content

Commit d2cf4d4

Browse files
authored
arm64: Build on Noble (#729)
1 parent f1eac7d commit d2cf4d4

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

.github/workflows/daily-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build:
1616
name: Build (${{ matrix.configuration.name }})
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818

1919
strategy:
2020
matrix:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ docker run --rm --privileged -it \
5050
-v /proc:/proc \
5151
-v ${PWD}:/working_dir \
5252
-w /working_dir \
53-
ubuntu:22.04 \
53+
ubuntu:24.04 \
5454
./build-rpi.sh
5555
```
5656

@@ -61,7 +61,7 @@ docker run --rm --privileged -it \
6161
-v /proc:/proc \
6262
-v ${PWD}:/working_dir \
6363
-w /working_dir \
64-
ubuntu:20.04 \
64+
ubuntu:24.04 \
6565
./build-pinebookpro.sh
6666
```
6767

build-pinebookpro.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -354,11 +354,7 @@ BUCKET="$4"
354354
IMGPATH="${basedir}"/${imagename}.img.xz
355355
IMGNAME=${channel}-pinebookpro/$(basename "$IMGPATH")
356356

357-
apt-get install -y curl python3 python3-distutils
358-
359-
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
360-
python3 get-pip.py
361-
pip install boto3
357+
apt-get install -y python3 python3-boto3
362358

363359
python3 upload.py "$KEY" "$SECRET" "$ENDPOINT" "$BUCKET" "$IMGPATH" "$IMGNAME" || exit 1
364360

build-rpi.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,7 @@ BUCKET="$4"
234234
IMGPATH="${basedir}"/${imagename}.img.xz
235235
IMGNAME=${channel}-rpi/$(basename "$IMGPATH")
236236

237-
apt-get install -y curl python3 python3-distutils
238-
239-
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
240-
python3 get-pip.py
241-
pip install boto3
237+
apt-get install -y python3 python3-boto3
242238

243239
python3 upload.py "$KEY" "$SECRET" "$ENDPOINT" "$BUCKET" "$IMGPATH" "$IMGNAME" || exit 1
244240

0 commit comments

Comments
 (0)