Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .ci/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ case "${IMAGE_NAME}" in
CUDA_VERSION=12.8
SKIP_PYTORCH=yes
;;
executorch-ubuntu-24.04-gcc14)
LINTRUNNER=""
OS_VERSION=24.04
GCC_VERSION=14
;;
*)
echo "Invalid image name ${IMAGE_NAME}"
exit 1
Expand Down
5 changes: 5 additions & 0 deletions .ci/docker/common/install_user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@

set -ex

# On Ubuntu 24.04, there is a `ubuntu` user with id=1000
if id ubuntu >/dev/null && [[ "$(id -u ubuntu)" == 1000 ]]; then
sudo userdel --remove ubuntu;
fi

# Same as ec2-user
echo "ci-user:x:1000:1000::/var/lib/ci-user:" >> /etc/passwd
echo "ci-user:x:1000:" >> /etc/group
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docker-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
executorch-ubuntu-22.04-zephyr-sdk,
executorch-ubuntu-22.04-qnn-sdk,
executorch-ubuntu-22.04-mediatek-sdk,
executorch-ubuntu-22.04-clang12-android
executorch-ubuntu-22.04-clang12-android,
executorch-ubuntu-24.04-gcc14,
]
include:
- docker-image-name: executorch-ubuntu-22.04-gcc11-aarch64
Expand Down
Loading