Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
# build_type: full
# qt_source: source
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
runner: ubuntu-latest
arch: amd64
build_type: full
qt_source: system
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-aarch64
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-aarch64
runner: ubuntu-24.04-arm
arch: aarch64
build_type: full
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# build_type: full
# qt_source: aqt
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
runner: ubuntu-latest
arch: amd64
build_type: full
Expand All @@ -51,7 +51,7 @@ jobs:
# apt-dependencies: mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0 python3-github python3-distro
# Do not change the names of self-hosted runners without knowing what you are doing, as they correspond to labels that have to be set on the runner.
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-aarch64
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-aarch64
runner: ubuntu-24.04-arm
arch: aarch64
build_type: full
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
build_type: full
qt_source: source # Which Qt Conan package to use. `system`, `source`, or `aqt`.
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-amd64 # Container image used for building. Built from /tools/ci-script/linux-ci/Dockerfile_x
runner: ubuntu-latest
arch: amd64
build_type: full
qt_source: system
- os: Ubuntu 22.04
image: docker.io/overte/overte-full-build:2025-10-24-ubuntu-22.04-aarch64
image: docker.io/overte/overte-full-build:2026-01-01-ubuntu-22.04-aarch64
runner: ubuntu-24.04-arm
arch: aarch64
build_type: full
Expand Down
5 changes: 3 additions & 2 deletions tools/ci-scripts/linux-ci/Dockerfile_build_ubuntu-22.04
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# syntax=docker/dockerfile:1.4

# Copyright 2022-2025 Overte e.V.
# Copyright 2022-2026 Overte e.V.
# SPDX-License-Identifier: Apache-2.0

# Docker file for building Overte
# Example build: docker build --no-cache --progress=plain -t overte/overte-full-build:2025-10-24-ubuntu-22.04-amd64 -f Dockerfile_build_ubuntu-22.04 .
# Example build: docker build --no-cache --progress=plain -t overte/overte-full-build:2026-01-01-ubuntu-22.04-amd64 -f Dockerfile_build_ubuntu-22.04 .
FROM ubuntu:22.04
LABEL maintainer="Julian Groß ([email protected])"
LABEL description="Development image for full Overte builds"
Expand Down Expand Up @@ -72,6 +72,7 @@ dh-make
python3-boto3
python3-github
zip
jq
PACKAGES

apt-get -y install $(grep -o '^[^#]*' packages.txt) # Install packages while ignoring comments.
Expand Down
Loading