Add Docker server Github Actions builds

This commit is contained in:
Julian Groß 2022-06-18 21:33:14 +02:00
parent cf9e93b611
commit c77170b472
13 changed files with 338 additions and 115 deletions

View file

@ -267,3 +267,85 @@ jobs:
# with:
# name: symbols
# path: ${{runner.workspace}}/${{ steps.buildenv1.outputs.symbols_archive }}
build_docker_server:
name: "${{matrix.os}}, Debian Docker"
container: docker.io/juliangro/overte-server-build:0.1
strategy:
matrix:
include:
- os: ubuntu-20.04
# 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: self-hosted_debian-11_aarch64
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- name: Report Build Number
shell: bash
run: |
echo "Build number: $BUILD_NUMBER"
- uses: actions/checkout@v1
with:
submodules: false
fetch-depth: 1
- name: Create build environment
shell: bash
run: |
mkdir build
echo "UPLOAD_PREFIX=build/overte/master" >> $GITHUB_ENV
- name: Configure CMake
working-directory: ./build
run: |
if [[ "$(uname -m)" = "x86_64" ]]; then
VIRCADIA_USE_SYSTEM_QT=1 STABLE_BUILD=0 cmake .. -DSERVER_ONLY=1 -DBUILD_TOOLS=0 -DVIRCADIA_CPU_ARCHITECTURE=-msse3 -DCMAKE_BUILD_TYPE=Release -DVCPKG_BUILD_TYPE=release
else
VIRCADIA_USE_SYSTEM_QT=1 STABLE_BUILD=0 cmake .. -DSERVER_ONLY=1 -DBUILD_TOOLS=0 -DVIRCADIA_CPU_ARCHITECTURE= -DCMAKE_BUILD_TYPE=Release -DVCPKG_BUILD_TYPE=release
fi
- name: Build Domain Server
working-directory: ./build
shell: bash
run: make -j$(nproc) domain-server
- name: Build Assignment Client
working-directory: ./build
shell: bash
run: make -j$(nproc) assignment-client
- name: Create Docker runtime image
run: docker build -t overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER" -f tools/ci-scripts/docker_package/Dockerfile_runtime .
- name: Export Docker runtime image
run : |
if [[ "$(uname -m)" = "x86_64" ]]; then
echo "Exporting image.."
docker image save -o overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER"
echo "Compressing with xz..
xz -z -T0 overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar
echo "Done."
echo "ARTIFACT_PATTERN=overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar.xz" >> $GITHUB_ENV
else
echo "Exporting image.."
docker image save -o overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER"
echo "Compressing with xz..
xz -z -T0 overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar
echo "Done."
echo "ARTIFACT_PATTERN=overte-server-master${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar.xz" >> $GITHUB_ENV
fi
- name: Output system stats
if: ${{ always() }}
shell: bash
run: |
echo "Disk usage:"
df -h
- name: Upload artifact
shell: bash
env:
AWS_ACCESS_KEY_ID: ${{ secrets.s3_access_key_id }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.s3_secret_access_key }}
run: python3 ./tools/ci-scripts/upload.py

View file

@ -330,3 +330,87 @@ jobs:
cd $GITHUB_WORKSPACE/android
fi
$PYTHON_EXEC "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"
build_docker_server:
name: "${{matrix.os}}, Debian Docker"
container: docker.io/juliangro/overte-server-build:0.1
strategy:
matrix:
include:
- os: ubuntu-20.04
# 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: self-hosted_debian-11_aarch64
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- name: Report Build Number
shell: bash
run: |
echo "Build number: $BUILD_NUMBER"
- uses: actions/checkout@v1
with:
submodules: false
fetch-depth: 1
- name: Create build environment
shell: bash
run: |
mkdir build
echo "UPLOAD_PREFIX=build/overte/experimental" >> $GITHUB_ENV
echo "JOB_NAME=${{matrix.os}}, ${{matrix.build_type}}" >> $GITHUB_ENV
- name: Configure CMake
working-directory: ./build
run: |
if [[ "$(uname -m)" = "x86_64" ]]; then
VIRCADIA_USE_SYSTEM_QT=1 STABLE_BUILD=0 cmake .. -DSERVER_ONLY=1 -DBUILD_TOOLS=0 -DVIRCADIA_CPU_ARCHITECTURE=-msse3 -DCMAKE_BUILD_TYPE=Release -DVCPKG_BUILD_TYPE=release
else
VIRCADIA_USE_SYSTEM_QT=1 STABLE_BUILD=0 cmake .. -DSERVER_ONLY=1 -DBUILD_TOOLS=0 -DVIRCADIA_CPU_ARCHITECTURE= -DCMAKE_BUILD_TYPE=Release -DVCPKG_BUILD_TYPE=release
fi
- name: Build Domain Server
working-directory: ./build
shell: bash
run: make -j$(nproc) domain-server
- name: Build Assignment Client
working-directory: ./build
shell: bash
run: make -j$(nproc) assignment-client
- name: Create Docker runtime image
run: docker build -t overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER" -f tools/ci-scripts/docker_package/Dockerfile_runtime .
- name: Export Docker runtime image
run : |
if [[ "$(uname -m)" = "x86_64" ]]; then
echo "Exporting image.."
docker image save -o overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER"
echo "Compressing with xz.."
xz -z -T0 overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar
echo "Done."
echo "ARTIFACT_PATTERN=overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-amd64.tar.xz" >> $GITHUB_ENV
else
echo "Exporting image.."
docker image save -o overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar overte-org/overte-server:"$GIT_COMMIT"_"$BUILD_NUMBER"
echo "Compressing with xz.."
xz -z -T0 overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar
echo "Done."
echo "ARTIFACT_PATTERN=overte-server-PR${{ github.event.number }}-${{ steps.buildenv1.outputs.github_sha_short }}-aarch64.tar.xz" >> $GITHUB_ENV
fi
- name: Output system stats
if: ${{ always() }}
shell: bash
run: |
echo "Disk usage:"
df -h
- name: Upload Artifact
shell: bash
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
python3 "$GITHUB_WORKSPACE/tools/ci-scripts/upload_to_publish_server.py"

View file

@ -0,0 +1,21 @@
# Docker file for building Overte Server
# Example build: docker build -t juliangro/overte-server-build:0.1 -f tools/ci-scripts/docker_package/Dockerfile_build .
FROM debian:bullseye
LABEL maintainer="Julian Groß (julian.gro@overte.org)"
LABEL description="Development image for Overte Domain server and assignment clients."
# Don't use any frontend when installalling packages during the creation of this container
ARG DEBIAN_FRONTEND=noninteractive
RUN echo UTC >/etc/timezone
# Installing via dependency causes interactive hang:
RUN apt-get -y install tzdata
# Install Overte domain-server and assignment-client build dependencies
RUN apt-get update && apt-get -y install curl ninja-build git cmake g++ libssl-dev libqt5websockets5-dev qtscript5-dev qtdeclarative5-dev qtmultimedia5-dev
# Install tools for creating the server image
RUN apt-get -y install docker.io xz-utils
# Install tools needed for our Github Actions Workflow
Run apt-get -y install python3-boto3 python3-github

View file

@ -0,0 +1,29 @@
# Docker file for overte_server
# Example build: docker build -t overte-org/overte_server -f tools/ci-scripts/docker_package/Dockerfile_runtime .
FROM docker.io/juliangro/overte-server-base:0.1
LABEL maintainer="Julian Groß (julian.gro@overte.org)"
LABEL description="Overte Domain server and assignment client image."
EXPOSE 40100 40101 40102
EXPOSE 40100/udp 40101/udp 40102/udp
EXPOSE 48000/udp 48001/udp 48002/udp 48003/udp 48004/udp 48005/udp 48006/udp
RUN mkdir -p /opt/overte/server/plugins /opt/overte/server/resources
COPY ./build/assignment-client/assignment-client /opt/overte/server/
COPY ./build/domain-server/domain-server /opt/overte/server/
COPY ./build/assignment-client/plugins/* /opt/overte/server/plugins/
COPY ./build/libraries/*/*.so /lib/
COPY ./build/domain-server/resources/ /opt/overte/server/resources/
COPY ./tools/ci-scripts/docker_package/overte.conf /etc/supervisor/conf.d/overte.conf
RUN chmod +x /opt/overte/server/domain-server
RUN chmod +x /opt/overte/server/assignment-client
# Ensure `domain-server` and `assignment-client` execute.
RUN /opt/overte/server/domain-server --version > /opt/overte/server/version && \
/opt/overte/server/assignment-client --version >> /opt/overte/server/version
RUN apt-get update && apt-get install -y supervisor
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/overte.conf"]

View file

@ -0,0 +1,15 @@
# Docker file for overte_server_base:1.0
# Example build: docker build -t overte-org/overte_server_base:1.0 -f tools/ci-scripts/docker_package/Dockerfile_runtime_linuxbase .
FROM debian:bullseye-slim
LABEL maintainer="Julian Groß (julian.gro@overte.org)"
LABEL description="Runtime base-image for Overte Domain server and assignment clients."
RUN echo UTC >/etc/timezone
# Installing via dependency causes interactive hang:
RUN apt-get -y install tzdata
# Update package cache
RUN apt-get update
# Install domain-server and assingment-client runtime dependencies
RUN apt-get -y install libqt5network5 libqt5script5 libqt5core5a libstdc++6 libc6 libgcc-s1 zlib1g libgssapi-krb5-2 libdouble-conversion3 libicu67 libpcre2-16-0 libzstd1 libglib2.0-0 libkrb5-3 libk5crypto3 libcom-err2 libkrb5support0 libpcre3 libkeyutils1 libssl1.1 libqt5gui5 libgl1 libpng16-16 libharfbuzz0b libmd4c0 libglvnd0 libglx0 libfreetype6 libgraphite2-3 libx11-6 libbrotli1 libxcb1 libxau6 libxdmcp6 libqt5websockets5 libbsd0 libmd0 libqt5qml5

View file

@ -0,0 +1,23 @@
This directory contains scripts used for building Linux server Docker images.
We are building Debian 11 based images for x86_64 and aarch64.
To build images for both architectures, you first create them with separate tags (e.g. 0.1-aarch64 and 0.1-amd64), push them,
and then you use *docker manifest* to link them together. E.g.:
```bash
docker manifest create overte-org/overte-server-build:0.1 --amend overte-org/overte-server-build:0.1-amd64 --amend overte-org/overte-server-build:0.1-aarch64
```
Then you push the manifest similar to how you would push an image:
```bash
docker manifest push overte-org/overte-server-build:0.1
```
*Dockerfile_build* generates an image that is used to build our Overte Docker Server images. It includes all dependencies for building a server.
Current images are available at https://hub.docker.com/repository/docker/juliangro/overte-server-build
*Dockerfile_runtime_linuxbase* generates a runtime base image for our Server. It includes all dependencies for running a server.
Current images are available at https://hub.docker.com/repository/docker/juliangro/overte-server-base
*Dockerfile_runtime* installs the built server into an image that uses the overte-server-base as a base.
The resulting image can be pushed to a Docker repository, or exported, compressed, and published via other means like the https://public.overte.org/index.html
If you are developing Docker images, you might want to set `DOCKER_BUILDKIT=1` to use a more modern build system that will actually cache each step.

View file

@ -0,0 +1,60 @@
[supervisord]
user=root
nodaemon=true
[program:domain-server]
command=/opt/overte/server/domain-server
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:audio-mixer]
command=/opt/overte/server/assignment-client -t 0 -a localhost -p 48000
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:avatar-mixer]
command=/opt/overte/server/assignment-client -t 1 -a localhost -p 48001
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:entities-server]
command=/opt/overte/server/assignment-client -t 6 -a localhost -p 48006
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:asset-server]
command=/opt/overte/server/assignment-client -t 3 -a localhost -p 48003
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:entity-script-server]
command=/opt/overte/server/assignment-client -t 5 -a localhost -p 48005
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:messages-mixer]
command=/opt/overte/server/assignment-client -t 4 -a localhost -p 48004
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log
[program:scripted-agent]
command=/opt/overte/server/assignment-client -t 2 -a localhost --max 100
autorestart=unexpected
directory=/opt/overte/server
stderr_logfile=/var/log/overte-err.log
stdout_logfile=/var/log/overte-out.log

View file

@ -0,0 +1,24 @@
import shutil
def main():
print("Copying build files..")
shutil.copytree(".", "../docker_package/")
main()

View file

@ -1,31 +0,0 @@
FROM simonwalton1/hifi_base_ubuntu:1.1
MAINTAINER DevOps Team (devops@highfidelity.io)
EXPOSE 40100 40101 40102
EXPOSE 40100/udp 40101/udp 40102/udp
EXPOSE 48000/udp 48001/udp 48002/udp 48003/udp 48004/udp 48005/udp 48006/udp
RUN mkdir -p /etc/hifi/server/plugins /etc/hifi/server/resources /etc/hifi/server/imageformats/ && \
ln -s /usr/local/Qt5.12.3/5.12.3/gcc_64/plugins/imageformats/* /etc/hifi/server/imageformats/
COPY ./assignment-client /etc/hifi/server/
#COPY ./oven /etc/hifi/server/
COPY ./domain-server /etc/hifi/server/
RUN true
COPY ./plugins/pcmCodec/libpcmCodec.so /etc/hifi/server/plugins/
# Dummy statement
RUN true
COPY ./*.so /lib/
RUN ln -sf /lib/libquazip5.so /lib/libquazip5.so.1
COPY ./domain-server/resources/ /etc/hifi/server/resources/
RUN true
COPY ./hifi.conf /etc/supervisor/conf.d/hifi.conf
RUN for fn in /usr/local/Qt5.12.3/5.12.3/gcc_64/plugins/imageformats/*.so; do \
if [ ! -x $fn ]; then ln -s $fn /etc/hifi/server/imageformats; fi; done
RUN chmod +x /etc/hifi/server/domain-server
RUN chmod +x /etc/hifi/server/assignment-client
# Ensure `domain-server` and `assignment-client` execute.
RUN /etc/hifi/server/domain-server --version > /etc/hifi/server/version && \
/etc/hifi/server/assignment-client --version >> /etc/hifi/server/version
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/hifi.conf"]

View file

@ -1,24 +0,0 @@
# Docker file for hifi_base_ubuntu:1.1
FROM ubuntu:18.04
MAINTAINER DevOps Team (devops@highfidelity.io)
EXPOSE 40100 40101 40102
EXPOSE 40100/udp 40101/udp 40102/udp
EXPOSE 48000/udp 48001/udp 48002/udp 48003/udp 48004/udp 48005/udp 48006/udp
RUN apt-get update && apt-get install -y software-properties-common apt-utils curl
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 15FF1AAE && add-apt-repository "deb http://debian.highfidelity.com stable main"
RUN echo UTC >/etc/timezone
# Installing via dependency causes interactive hang:
RUN apt-get -y install tzdata
RUN curl http://archive.ubuntu.com/ubuntu/pool/main/b/bison/libbison-dev_3.0.4.dfsg-1build1_amd64.deb >/tmp/libbison-dev.deb
RUN dpkg -i /tmp/libbison-dev.deb && rm /tmp/libbison-dev.deb
RUN apt-get update && apt-get -y --allow-unauthenticated install libglib2.0-0 libgl1-mesa-dev gdb python-pip build-essential \
openssl libssl-dev libssl1.0.0 unzip flex bison gperf perl libsqlite3-dev \
libfontconfig1-dev libicu-dev libfreetype6 libssl-dev libpng-dev libjpeg-dev \
python libx11-dev libxext-dev libtbb2 hifiqt5.12.3 \
ntp unzip libwww-perl libdatetime-perl make pkg-config libnss3 libxi6 \
libxcursor1 libxcomposite1 libasound2 libxtst6 libxslt1.1 supervisor
# Additional packages for v1.1:
RUN apt-get -y --allow-unauthenticated install mesa-common-dev libegl1 libglvnd-dev \
libdouble-conversion1 libpulse0

View file

@ -1,60 +0,0 @@
[supervisord]
user=root
nodaemon=true
[program:domain-server]
command=/etc/hifi/server/domain-server
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:audio-mixer]
command=/etc/hifi/server/assignment-client -t 0 -a localhost -p 48000
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:avatar-mixer]
command=/etc/hifi/server/assignment-client -t 1 -a localhost -p 48001
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:entities-server]
command=/etc/hifi/server/assignment-client -t 6 -a localhost -p 48006
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:asset-server]
command=/etc/hifi/server/assignment-client -t 3 -a localhost -p 48003
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:entity-script-server]
command=/etc/hifi/server/assignment-client -t 5 -a localhost -p 48005
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:messages-mixer]
command=/etc/hifi/server/assignment-client -t 4 -a localhost -p 48004
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log
[program:scripted-agent]
command=/etc/hifi/server/assignment-client -t 2 -a localhost --max 100
autorestart=unexpected
directory=/etc/hifi/server
stderr_logfile=/var/log/hifi-err.log
stdout_logfile=/var/log/hifi-out.log

0
tools/ci-scripts/upload.py Normal file → Executable file
View file

0
tools/ci-scripts/upload_to_publish_server.py Normal file → Executable file
View file