Skip to content

Commit 15ecac8

Browse files
committed
ci: updates
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
1 parent 0bc006e commit 15ecac8

File tree

4 files changed

+10
-31
lines changed

4 files changed

+10
-31
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@ build-debian-14-arm64:
2727
- df -h /dev/shm
2828
- ccache -M 1G
2929
- ccache -sv
30-
- ccache --recompress=uncompressed
3130
- ccache -z
3231
- ./build_u-boot.sh
3332
- ccache -sv
3433
- df -h /dev/shm
35-
- tar --use-compress-program='zstd -9' -cf ccache.tar.zst /dev/shm/my-ccache-in-memory
34+
- tar --use-compress-program='zstd -6' -cf ccache.tar.zst /dev/shm/my-ccache-in-memory
3635

37-
build-debian-13-arm64:
36+
pages:
3837
image: robertcnelson/beagle-devscripts-kernel-debian-13-arm64:latest
3938
# https://openbeagle.org/beagleboard/ci-docker-images
4039
cache:
@@ -49,34 +48,11 @@ build-debian-13-arm64:
4948
- df -h /dev/shm
5049
- ccache -M 1G
5150
- ccache -sv
52-
- ccache --recompress=uncompressed
53-
- ccache -z
54-
- ./build_u-boot.sh
55-
- ccache -sv
56-
- df -h /dev/shm
57-
- tar --use-compress-program='zstd -9' -cf ccache.tar.zst /dev/shm/my-ccache-in-memory
58-
59-
pages:
60-
image: robertcnelson/beagle-devscripts-kernel-debian-12-arm64:latest
61-
# https://openbeagle.org/beagleboard/ci-docker-images
62-
cache:
63-
key: "$CI_PROJECT_NAME-debian-12-arm64"
64-
paths:
65-
- ccache.tar.zst
66-
tags:
67-
- docker-aarch64-rpi4-ci
68-
stage: build
69-
script:
70-
- tar --zstd -xf ccache.tar.zst -C / || true
71-
- df -h /dev/shm
72-
- ccache -M 1G
73-
- ccache -sv
74-
- ccache --recompress=uncompressed
7551
- ccache -z
7652
- ./build_u-boot.sh
7753
- ccache -sv
7854
- df -h /dev/shm
79-
- tar --use-compress-program='zstd -9' -cf ccache.tar.zst /dev/shm/my-ccache-in-memory
55+
- tar --use-compress-program='zstd -6' -cf ccache.tar.zst /dev/shm/my-ccache-in-memory
8056
- apindex public
8157
artifacts:
8258
when: on_success

scripts/pull.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
git pull --no-edit https://github.com/beagleboard/u-boot-beagley-ai.git main

scripts/push-tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ wfile=$(mktemp /tmp/builder.XXXXXXXXX)
55
. version.sh
66

77
echo "****************************************************"
8-
echo [${UBOOT}:${TRUSTED_FIRMWARE}:${OPTEE}:${TI_FIRMWARE}]
8+
echo [${UBOOT}:${TFA}:${OPTEE}:${TI_FIRMWARE}]
99
echo "****************************************************"
1010

1111
cp public/base.sh public/get_n_install.sh

version.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ TI_FIRMWARE="${TI_FIRMWARE:-11.02.11}"
55

66
#https://github.com/TrustedFirmware-A/trusted-firmware-a.git
77
TFA_GIT="${TFA_GIT:-https://github.com/TrustedFirmware-A/trusted-firmware-a.git}"
8-
#TFA="lts-v2.12.8"
9-
TFA="v2.14.0"
8+
#TFA="${TFA:-lts-v2.12.8}"
9+
TFA="${TFA:-v2.14.0}"
1010

1111
#https://github.com/OP-TEE/optee_os.git
12-
OPTEE="4.9.0-rc1"
12+
OPTEE="${OPTEE:-4.9.0-rc1}"
1313

1414
#https://github.com/beagleboard/u-boot.git
1515
UBOOT_GIT="${UBOOT_GIT:-https://github.com/beagleboard/u-boot.git}"

0 commit comments

Comments
 (0)