# Copyright 2013-2019 High Fidelity, Inc. # Copyright 2020-2022 Vircadia contributors. # Copyright 2021-2025 Overte e.V. # SPDX-License-Identifier: Apache-2.0 name: Linux Server CI Build # Keep in mind that GitHub Actions does not allow reading secrets during PR builds. on: pull_request: types: [opened, synchronize, reopened, labeled] push: tags: # Release tags. E.g. 2024.06.1 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet - "[0-9][0-9][0-9][0-9].[0-9][0-9].**" env: BUILD_TYPE: Release UPLOAD_BUCKET: overte-public UPLOAD_REGION: fra1 UPLOAD_ENDPOINT: "https://fra1.digitaloceanspaces.com" # Disable VCPKG caching to save time. VCPKG_FEATURE_FLAGS: -binarycaching jobs: build: # Only run master or tagged builds, or PRs when labeled as "server" if: github.event.label.name == 'server'|| github.event_name != 'pull_request' name: "${{matrix.os}}, ${{matrix.arch}}" strategy: matrix: include: - os: debian-11 image: docker.io/overte/overte-server-build:0.1.6-debian-11-amd64 arch: amd64 # https://github.com/testflows/TestFlows-GitHub-Hetzner-Runners/wiki/Meta-Labels # self_hosted makes the Hetzner auto-scaler put up the job. # type-cx52 is a Hetzner VPS server type. In this case cs52 is a server with 16-cores and 32GB of RAM. # image-x86-app-docker-ce is a Hetzner image. # https://github.com/testflows/TestFlows-GitHub-Hetzner-Runners/wiki/Specifying-The-Runner-Image runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: debian-11 image: docker.io/overte/overte-server-build:0.1.6-debian-11-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: debian-12 image: docker.io/overte/overte-server-build:0.1.6-debian-12-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: debian-12 image: docker.io/overte/overte-server-build:0.1.6-debian-12-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: debian-13 image: docker.io/overte/overte-server-build:0.1.6-debian-13-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: debian-13 image: docker.io/overte/overte-server-build:0.1.6-debian-13-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: ubuntu-20.04 image: docker.io/overte/overte-server-build:0.1.6-ubuntu-20.04-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: ubuntu-22.04 image: docker.io/overte/overte-server-build:0.1.6-ubuntu-22.04-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: ubuntu-22.04 image: docker.io/overte/overte-server-build:0.1.6-ubuntu-22.04-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: ubuntu-24.04 image: docker.io/overte/overte-server-build:0.1.6-ubuntu-24.04-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: ubuntu-24.04 image: docker.io/overte/overte-server-build:0.1.6-ubuntu-24.04-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: fedora-40 image: docker.io/overte/overte-server-build:0.1.6-fedora-40-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: fedora-40 image: docker.io/overte/overte-server-build:0.1.6-fedora-40-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: fedora-41 image: docker.io/overte/overte-server-build:0.1.6-fedora-41-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] - os: fedora-41 image: docker.io/overte/overte-server-build:0.1.6-fedora-41-aarch64 arch: aarch64 runner: [self_hosted, type-cax41, image-arm-app-docker-ce] #~ - os: fedora-42 #~ image: docker.io/overte/overte-server-build:0.1.6-fedora-42-amd64 #~ arch: amd64 #~ runner: [self_hosted, type-cx52, image-x86-app-docker-ce] #~ - os: fedora-42 #~ image: docker.io/overte/overte-server-build:0.1.6-fedora-42-aarch64 #~ arch: aarch64 #~ runner: [self_hosted, type-cax41, image-arm-app-docker-ce] - os: rockylinux-9 image: docker.io/overte/overte-server-build:0.1.6-rockylinux-9-amd64 arch: amd64 runner: [self_hosted, type-cx52, image-x86-app-docker-ce] fail-fast: false runs-on: ${{matrix.runner}} container: ${{matrix.image}} steps: - name: Clear Working Directories if: contains(matrix.runner, 'linux_aarch64') || contains(matrix.runner, 'linux_amd64') shell: bash run: | rm -rf ./* rm -rf ~/overte-files rm -rf ~/.cache - name: Configure Build Environment 1 shell: bash run: | # Get git commit if [ "${{github.event_name}}" = "pull_request" ]; then echo "GIT_COMMIT_SHORT=`echo ${{ github.event.pull_request.head.sha }} | cut -c1-7`" >> $GITHUB_ENV else # master or tagged echo "GIT_COMMIT_SHORT=`echo ${{ github.sha }} | cut -c1-7`" >> $GITHUB_ENV fi echo "REFNAME=${{ github.ref_name }}" >> $GITHUB_ENV echo "JOB_NAME=${{matrix.os}}, ${{matrix.arch}}" >> $GITHUB_ENV echo "CMAKE_BUILD_EXTRA=-- -j$(nproc)" >> $GITHUB_ENV if [[ "${{ matrix.os }}" =~ "ubuntu" || "${{ matrix.os }}" =~ "debian" ]]; then echo "INSTALLER_EXT=deb" >> $GITHUB_ENV echo "DEBEMAIL=julian.gro@overte.org" >> $GITHUB_ENV echo "DEBFULLNAME=GitHub Actions CI" >> $GITHUB_ENV else # RPM if [ "${{ matrix.arch }}" == "amd64" ]; then echo "INSTALLER_EXT=x86_64.rpm" >> $GITHUB_ENV else echo "INSTALLER_EXT=aarch64.rpm" >> $GITHUB_ENV fi fi # Tagged builds. E.g. release or release candidate builds. if [ "${{github.ref_type}}" == "tag" ]; then echo "PRODUCTION_BUILD=true" >> $GITHUB_ENV fi # Systems requiring our prebuilt Qt package if [[ "${{ matrix.os }}" = "ubuntu-18.04" || "${{ matrix.os }}" = "ubuntu-20.04" ]]; then echo # false else echo "OVERTE_USE_SYSTEM_QT=true" >> $GITHUB_ENV fi # Architecture specific variables if [[ "${{ matrix.arch }}" = "aarch64" ]]; then echo "VCPKG_FORCE_SYSTEM_BINARIES=true" >> $GITHUB_ENV echo "CMAKE_EXTRA=-DOVERTE_CPU_ARCHITECTURE= -DSERVER_ONLY=true -DBUILD_TOOLS=true" >> $GITHUB_ENV else # amd64 echo "CMAKE_EXTRA=-DOVERTE_CPU_ARCHITECTURE=-msse3 -DSERVER_ONLY=true -DBUILD_TOOLS=true" >> $GITHUB_ENV fi # Configuration is broken into multiple steps because you can't set an env var and also reference it in the same step - name: Configure Build Environment 2 shell: bash run: | # Versioning if [ "${{ github.event_name }}" = "pull_request" ]; then echo "DEBVERSION=${{ github.event.number }}PR-$GIT_COMMIT_SHORT-${{ matrix.os }}" >> $GITHUB_ENV echo "RPMVERSION=PR${{ github.event.number }}.$GIT_COMMIT_SHORT" >> $GITHUB_ENV elif [ "${{ github.ref_name }}" = "master" ]; then echo "DEBVERSION=${{ github.run_number }}master-$GIT_COMMIT_SHORT-${{ matrix.os }}" >> $GITHUB_ENV echo "RPMVERSION=master${{ github.run_number }}.$GIT_COMMIT_SHORT" >> $GITHUB_ENV echo "UPLOAD_PREFIX=build/overte/master" >> $GITHUB_ENV echo "RELEASE_NUMBER=${{ github.run_number }}" >> $GITHUB_ENV else # tagged echo "DEBVERSION=${{ github.ref_name }}-$GIT_COMMIT_SHORT-${{ matrix.os }}" >> $GITHUB_ENV # We remove all dash characters from RPM versions, because rpmbuild doesn't allow dashes in version numbers. echo "RPMVERSION=${REFNAME//-}.$GIT_COMMIT_SHORT" >> $GITHUB_ENV fi if [ "${{ github.ref_type }}" == "tag" ]; then # tagged echo "RELEASE_NUMBER=${{ github.ref_name }}" >> $GITHUB_ENV if [[ "${{ github.ref_name }}" == *"rc"* ]]; then # release candidate # The uploader already creates a subfolder for each RELEASE_NUMBER. echo "UPLOAD_PREFIX=build/overte/release-candidate/" >> $GITHUB_ENV else # release echo "UPLOAD_PREFIX=build/overte/release/" >> $GITHUB_ENV fi fi echo "BUILD_NUMBER=$GIT_COMMIT_SHORT" >> $GITHUB_ENV if [ "${{ github.ref_type }}" == "tag" ]; then export CMAKE_BACKTRACE_URL="${{ secrets.SENTRY_MINIDUMP_ENDPOINT }}" export CMAKE_BACKTRACE_TOKEN="${{ github.ref_name }}_${{ matrix.os }}_${{ github.sha }}" else # We're building a PR, default to the PR endpoint export CMAKE_BACKTRACE_URL="https://o4504831972343808.ingest.sentry.io/api/4504832427950080/minidump/?sentry_key=f511de295975461b8f92a36f4a4a4f32" export CMAKE_BACKTRACE_TOKEN="server_pr_${{ github.event.number }}_${{ github.sha }}" fi - name: Configure Build Environment 3 shell: bash run: | if [[ "${{ matrix.os }}" =~ "ubuntu" || "${{ matrix.os }}" =~ "debian" ]]; then if [ "${{ matrix.arch }}" == "aarch64" ]; then echo "ARTIFACT_PATTERN=overte-server_${DEBVERSION}-1_arm64.$INSTALLER_EXT" >> $GITHUB_ENV else # amd64 echo "ARTIFACT_PATTERN=overte-server_${DEBVERSION}-1_amd64.$INSTALLER_EXT" >> $GITHUB_ENV fi else # RPM if [ "${{ matrix.os }}" == "rockylinux-9" ]; then echo "ARTIFACT_PATTERN=overte-server-$RPMVERSION-1.el9.$INSTALLER_EXT" >> $GITHUB_ENV elif [ "${{ matrix.os }}" == "fedora-40" ]; then echo "ARTIFACT_PATTERN=overte-server-$RPMVERSION-1.fc40.$INSTALLER_EXT" >> $GITHUB_ENV elif [ "${{ matrix.os }}" == "fedora-41" ]; then echo "ARTIFACT_PATTERN=overte-server-$RPMVERSION-1.fc41.$INSTALLER_EXT" >> $GITHUB_ENV elif [ "${{ matrix.os }}" == "fedora-42" ]; then echo "ARTIFACT_PATTERN=overte-server-$RPMVERSION-1.fc42.$INSTALLER_EXT" >> $GITHUB_ENV else echo "Error! ARTIFACT_PATTERN not set!" exit 1 # Fail fi fi - uses: actions/checkout@v4 with: submodules: false fetch-depth: 1 - name: Create Build Environment shell: bash run: mkdir build - name: Configure CMake working-directory: build shell: bash run: | cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DVCPKG_BUILD_TYPE=release $CMAKE_EXTRA - name: Compress cmake logs if: always() shell: bash run: | if [ ${{ env.CI_WORKSPACE }} ]; then find "$CI_WORKSPACE/overte-files/vcpkg" -name '*log' -type f -print0 | tar --null --force-local -T - -c --xz -v -f "cmake-logs-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}.tar.xz" else find "$HOME/overte-files/vcpkg" -name '*log' -type f -print0 | tar --null --force-local -T - -c --xz -v -f "cmake-logs-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}.tar.xz" fi - name: Archive cmake logs if: always() uses: actions/upload-artifact@v4 with: name: cmake-logs-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}.tar.xz path: cmake-logs-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}.tar.xz - name: Build Domain Server working-directory: build shell: bash run: cmake --build . --config $BUILD_TYPE --target domain-server $CMAKE_BUILD_EXTRA - name: Build Assignment Client working-directory: build shell: bash run: cmake --build . --config $BUILD_TYPE --target assignment-client $CMAKE_BUILD_EXTRA - name: Build Oven working-directory: build shell: bash run: cmake --build . --config $BUILD_TYPE --target oven $CMAKE_BUILD_EXTRA - name: Package working-directory: pkg-scripts shell: bash run: | if [[ "${{ matrix.os }}" = "ubuntu"* || "${{ matrix.os }}" = "debian"* ]]; then # Debian ./make-deb-server else # RPM ./make-rpm-server fi - name: Output system stats if: ${{ always() }} shell: bash run: | echo "Disk usage:" df -h - name: Upload artifact to GitHub uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_PATTERN }} path: pkg-scripts/${{ env.ARTIFACT_PATTERN }} - name: Upload artifact to S3 if: github.event_name != 'pull_request' # PR builds cannot be uploaded to S3 shell: bash working-directory: pkg-scripts env: AWS_ACCESS_KEY_ID: ${{ secrets.s3_access_key_id }} AWS_SECRET_ACCESS_KEY: ${{ secrets.s3_secret_access_key }} run: python3 $GITHUB_WORKSPACE/tools/ci-scripts/upload.py - name: Clear Working Directories if: contains(matrix.runner, 'linux_aarch64') || contains(matrix.runner, 'linux_amd64') shell: bash run: | rm -rf ./* rm -rf ~/overte-files rm -rf ~/.cache