LWJGL CI configuration #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LWJGL Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
AWS_DEFAULT_REGION: us-east-1 | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
S3_PARAMS: --cache-control "public,must-revalidate,proxy-revalidate,max-age=0" | |
OPENXR_PARAMS: -DDYNAMIC_LOADER=ON -DBUILD_WITH_STD_FILESYSTEM=OFF | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
container: | |
image: centos:7 | |
strategy: | |
fail-fast: false | |
matrix: | |
ARCH: [x64] | |
include: | |
- ARCH: x64 | |
steps: | |
- name: Upgrade git | |
run: | | |
yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm | |
yum -y install git | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 3 | |
- name: Configure yum | |
run: | | |
yum -y install epel-release | |
yum -y update | |
- name: Install build dependencies | |
run: | | |
yum -y install centos-release-scl | |
yum -y install devtoolset-11-gcc-c++ | |
yum -y install cmake3 awscli | |
- name: Install OpenXR-SDK dependencies | |
run: yum -y install libX11-devel libxcb-devel wayland-devel mesa-libGL-devel vulkan-devel | |
- name: Configure build | |
run: | | |
source scl_source enable devtoolset-11 || true | |
cmake3 -B build $OPENXR_PARAMS -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: | | |
source scl_source enable devtoolset-11 || true | |
cmake3 --build build --parallel | |
strip build/src/loader/libopenxr_loader.so | |
- name: Upload artifact | |
run: aws s3 cp build/src/loader/libopenxr_loader.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | |
- name: Upload git revision | |
run: | | |
git config --global --add safe.directory $PWD | |
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libopenxr_loader.so.git | |
aws s3 cp libopenxr_loader.so.git s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | |
# linux-cross: | |
# name: Linux Cross | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ${{matrix.CONTAINER}} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# ARCH: [arm32, arm64, ppc64le, riscv64] | |
# include: | |
# # ----- | |
# - ARCH: arm32 | |
# CROSS_ARCH: armhf | |
# CONTAINER: ubuntu:18.04 | |
# TRIPLET: arm-linux-gnueabihf | |
# # ----- | |
# - ARCH: arm64 | |
# CROSS_ARCH: arm64 | |
# CONTAINER: ubuntu:18.04 | |
# TRIPLET: aarch64-linux-gnu | |
# # ---- | |
# - ARCH: ppc64le | |
# CROSS_ARCH: ppc64el | |
# CONTAINER: ubuntu:18.04 | |
# TRIPLET: powerpc64le-linux-gnu | |
# # ----- | |
# - ARCH: riscv64 | |
# CROSS_ARCH: riscv64 | |
# CONTAINER: ubuntu:20.04 | |
# TRIPLET: riscv64-linux-gnu | |
# env: | |
# LWJGL_ARCH: ${{matrix.ARCH}} | |
# defaults: | |
# run: | |
# shell: bash | |
# steps: | |
# - name: Upgrade git | |
# run: | | |
# apt-get -y update | |
# apt-get -y install software-properties-common wget | |
# apt-get -y install --reinstall ca-certificates | |
# apt-get -y update | |
# apt-get -y upgrade | |
# wget https://apt.kitware.com/keys/kitware-archive-latest.asc | |
# apt-key add kitware-archive-latest.asc | |
# add-apt-repository -y 'deb https://apt.kitware.com/ubuntu/ bionic main' | |
# add-apt-repository -y ppa:git-core/ppa | |
# apt-get -y update | |
# DEBIAN_FRONTEND=noninteractive apt-get -yq install awscli git | |
# - uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 3 | |
# - name: Install dependencies | |
# run: DEBIAN_FRONTEND=noninteractive apt-get -yq install cmake gcc-${{matrix.TRIPLET}} g++-${{matrix.TRIPLET}} libc6-dev-${{matrix.CROSS_ARCH}}-cross | |
# - name: Prepare cross-compilation for ${{matrix.CROSS_ARCH}} | |
# run: | | |
# sed -i 's/deb http/deb [arch=amd64,i386] http/' /etc/apt/sources.list | |
# grep "ubuntu.com/ubuntu" /etc/apt/sources.list | tee /etc/apt/sources.list.d/ports.list | |
# sed -i 's/amd64,i386/${{matrix.CROSS_ARCH}}/' /etc/apt/sources.list.d/ports.list | |
# sed -i 's#http://.*/ubuntu#http://ports.ubuntu.com/ubuntu-ports#' /etc/apt/sources.list.d/ports.list | |
# dpkg --add-architecture ${{matrix.CROSS_ARCH}} | |
# apt-get update | |
# - name: Install cross-compilation dependencies | |
# run: apt-get -yq --allow-unauthenticated --no-install-suggests --no-install-recommends install libgl1-mesa-dev:${{matrix.CROSS_ARCH}} libvulkan-dev:${{matrix.CROSS_ARCH}} libx11-xcb-dev:${{matrix.CROSS_ARCH}} libxcb-dri2-0-dev:${{matrix.CROSS_ARCH}} libxcb-glx0-dev:${{matrix.CROSS_ARCH}} libxcb-icccm4-dev:${{matrix.CROSS_ARCH}} libxcb-keysyms1-dev:${{matrix.CROSS_ARCH}} libxcb-randr0-dev:${{matrix.CROSS_ARCH}} libxrandr-dev:${{matrix.CROSS_ARCH}} libxxf86vm-dev:${{matrix.CROSS_ARCH}} mesa-common-dev:${{matrix.CROSS_ARCH}} libwayland-dev:${{matrix.CROSS_ARCH}} -o Dpkg::Options::="--force-overwrite" | |
# - name: Configure build | |
# run: PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:${CMAKE_SYSROOT}/usr/lib/${{matrix.TRIPLET}}/pkgconfig CC=${{matrix.TRIPLET}}-gcc CXX=${{matrix.TRIPLET}}-g++ cmake -B build $OPENXR_PARAMS -DCMAKE_BUILD_TYPE=Release | |
# - name: Build | |
# run: | | |
# cmake --build build --parallel | |
# ${{matrix.TRIPLET}}-strip build/src/loader/libopenxr_loader.so | |
# - name: Upload artifact | |
# run: aws s3 cp build/src/loader/libopenxr_loader.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | |
# - name: Upload git revision | |
# run: | | |
# git config --global --add safe.directory $(pwd) | |
# git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libopenxr_loader.so.git | |
# aws s3 cp libopenxr_loader.so.git s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | |
freebsd-cross: | |
name: FreeBSD Cross | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 3 | |
- name: Build | |
uses: cross-platform-actions/[email protected] | |
with: | |
operating_system: freebsd | |
architecture: x86-64 | |
version: '13.2' | |
memory: 4G | |
shell: bash | |
environment_variables: OPENXR_PARAMS | |
run: | | |
sudo pkg install -y cmake libX11 libxcb wayland mesa-libs vulkan-headers | |
cmake -B build $OPENXR_PARAMS -DCMAKE_BUILD_TYPE=Release | |
cmake --build build | |
strip build/src/loader/libopenxr_loader.so | |
- name: Upload artifact # Symlinks are not copied out of the VM. These SOs are versioned. | |
run: aws s3 cp `ls build/src/loader/libopenxr_loader.so*` s3://lwjgl-build/nightly/freebsd/x64/libopenxr_loader.so $S3_PARAMS | |
- name: Upload git revision | |
run: | | |
git config --global --add safe.directory $PWD | |
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libopenxr_loader.so.git | |
aws s3 cp libopenxr_loader.so.git s3://lwjgl-build/nightly/freebsd/x64/ $S3_PARAMS | |
# windows: | |
# name: Windows | |
# runs-on: windows-2022 | |
# strategy: | |
# matrix: | |
# ARCH: [x86, x64, arm64] | |
# include: | |
# - ARCH: x86 | |
# PLATFORM: Win32 | |
# - ARCH: x64 | |
# PLATFORM: x64 | |
# - ARCH: arm64 | |
# PLATFORM: ARM64 | |
# defaults: | |
# run: | |
# shell: cmd | |
# steps: | |
# - uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 3 | |
# - name: Configure build | |
# run: cmake -B build -G "Visual Studio 17 2022" -A ${{matrix.PLATFORM}} ${{env.OPENXR_PARAMS}} | |
# - name: Build | |
# run: cmake --build build --parallel --config Release --parallel | |
# - name: Upload artifact | |
# run: aws s3 cp build\src\loader\Release\openxr_loader.dll s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/openxr-loader.dll ${{env.S3_PARAMS}} | |
# - name: Upload git revision | |
# run: | | |
# git log --first-parent --pretty=format:%%H HEAD~2..HEAD~1 > revision.git | |
# aws s3 cp revision.git s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/openxr-loader.dll.git ${{env.S3_PARAMS}} |