forked from KhronosGroup/KTX-Software
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
249 additions
and
423 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,247 @@ | ||
name: LWJGL Build | ||
# The following: | ||
# - fetch-depth: 0 | ||
# - git remote add upstream https://github.com/KhronosGroup/KTX-Software.git | ||
# - git fetch --all --tags | ||
# are required for the build to correctly set the library version. | ||
|
||
on: | ||
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" | ||
KTX_CMAKE_PARAMS: -DBASISU_SUPPORT_OPENCL=OFF -DKTX_FEATURE_TESTS=OFF -DKTX_FEATURE_TOOLS=OFF | ||
|
||
jobs: | ||
linux: | ||
name: Linux | ||
runs-on: ubuntu-latest | ||
container: | ||
image: centos:7 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ARCH: [x64] | ||
include: | ||
- ARCH: x64 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_AVX2=ON -DASTCENC_ISA_SSE41=ON -DASTCENC_ISA_SSE2=ON | ||
defaults: | ||
run: | ||
shell: bash | ||
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: Fetch tags | ||
run: | | ||
git config --global --add safe.directory $PWD | ||
git remote add upstream https://github.com/KhronosGroup/KTX-Software.git | ||
git fetch --all --tags | ||
- name: Configure build | ||
run: | | ||
source scl_source enable devtoolset-11 || true | ||
cmake3 -B build ${{env.KTX_CMAKE_PARAMS}} ${{matrix.ISA_CMAKE_PARAMS}} | ||
- name: Build | ||
run: | | ||
source scl_source enable devtoolset-11 || true | ||
cmake3 --build build --parallel --target ktx | ||
strip build/libktx.so | ||
- name: Upload artifact | ||
run: aws s3 cp build/libktx.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
- name: Upload git revision | ||
run: | | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libktx.so.git | ||
aws s3 cp libktx.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 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_NEON=OFF -DASTCENC_ISA_NONE=ON | ||
# ---- | ||
- ARCH: arm64 | ||
CROSS_ARCH: arm64 | ||
CONTAINER: ubuntu:18.04 | ||
TRIPLET: aarch64-linux-gnu | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_NEON=OFF -DASTCENC_ISA_NONE=ON | ||
# ---- | ||
- ARCH: ppc64le | ||
CROSS_ARCH: ppc64el | ||
CONTAINER: ubuntu:18.04 | ||
TRIPLET: powerpc64le-linux-gnu | ||
ISA_CMAKE_PARAMS: | ||
# ----- | ||
- ARCH: riscv64 | ||
CROSS_ARCH: riscv64 | ||
CONTAINER: ubuntu:20.04 | ||
TRIPLET: riscv64-linux-gnu | ||
ISA_CMAKE_PARAMS: | ||
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: 0 | ||
- name: Install dependencies | ||
run: DEBIAN_FRONTEND=noninteractive apt-get -yq install cmake gcc-${{matrix.TRIPLET}} g++-${{matrix.TRIPLET}} libc6-dev-${{matrix.CROSS_ARCH}}-cross | ||
# - uses: humbletim/[email protected] | ||
# with: | ||
# vulkan-query-version: latest | ||
# vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
# vulkan-use-cache: false | ||
- name: Install cross-compilation dependencies 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 || true | ||
- name: Fetch tags | ||
run: | | ||
git config --global --add safe.directory $(pwd) | ||
git remote add upstream https://github.com/KhronosGroup/KTX-Software.git | ||
git fetch --all --tags | ||
- 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 ${{env.KTX_CMAKE_PARAMS}} ${{matrix.ISA_CMAKE_PARAMS}} | ||
- name: Build | ||
run: | | ||
cd build | ||
cmake --build . --parallel --target ktx | ||
${{matrix.TRIPLET}}-strip libktx.so | ||
- name: Upload artifact | ||
run: aws s3 cp build/libktx.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
- name: Upload git revision | ||
run: | | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libktx.so.git | ||
aws s3 cp libktx.so.git s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
macos: | ||
name: macOS | ||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ARCH: [x64, arm64] | ||
include: | ||
- ARCH: x64 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_AVX2=ON -DASTCENC_ISA_SSE41=ON -DASTCENC_ISA_SSE2=ON | ||
CMAKE_PARAMS: -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 | ||
- ARCH: arm64 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_NEON=ON | ||
CMAKE_PARAMS: -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DCMAKE_OSX_ARCHITECTURES=arm64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# - uses: humbletim/[email protected] | ||
# with: | ||
# vulkan-query-version: latest | ||
# vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
# vulkan-use-cache: false | ||
- name: Fetch tags | ||
run: | | ||
git remote add upstream https://github.com/KhronosGroup/KTX-Software.git | ||
git fetch --all --tags | ||
- name: Configure build | ||
run: cmake -B build ${{env.KTX_CMAKE_PARAMS}} ${{matrix.CMAKE_PARAMS}} ${{matrix.ISA_CMAKE_PARAMS}} | ||
- name: Build | ||
run: | | ||
cd build | ||
cmake --build . --parallel --target ktx | ||
ls -la | ||
strip -u -r libktx.dylib | ||
- name: Upload artifact | ||
run: aws s3 cp build/libktx.dylib s3://lwjgl-build/nightly/macosx/${{matrix.ARCH}}/ $S3_PARAMS | ||
- name: Upload git revision | ||
run: | | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libktx.dylib.git | ||
aws s3 cp libktx.dylib.git s3://lwjgl-build/nightly/macosx/${{matrix.ARCH}}/ $S3_PARAMS | ||
windows: | ||
name: Windows | ||
runs-on: windows-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ARCH: [x64, arm64] | ||
include: | ||
- ARCH: x64 | ||
PLATFORM: x64 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_AVX2=ON -DASTCENC_ISA_SSE41=ON -DASTCENC_ISA_SSE2=ON | ||
- ARCH: arm64 | ||
PLATFORM: ARM64 | ||
ISA_CMAKE_PARAMS: -DASTCENC_ISA_NEON=ON -DASTCENC_ISA_NONE=OFF | ||
defaults: | ||
run: | ||
shell: cmd | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# - uses: humbletim/[email protected] | ||
# with: | ||
# vulkan-query-version: latest | ||
# vulkan-components: Vulkan-Headers, Vulkan-Loader | ||
# vulkan-use-cache: false | ||
- name: Fetch tags | ||
run: | | ||
git remote add upstream https://github.com/KhronosGroup/KTX-Software.git | ||
git fetch --all --tags | ||
- name: Configure build | ||
run: cmake . -B build -G "Visual Studio 17 2022" -A ${{matrix.PLATFORM}} ${{env.KTX_CMAKE_PARAMS}} ${{matrix.ISA_CMAKE_PARAMS}} | ||
- name: Build | ||
run: | | ||
cd build | ||
cmake --build . --config Release --parallel --target ktx | ||
- name: Upload artifact | ||
run: aws s3 cp build\Release\ktx.dll s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/ ${{env.S3_PARAMS}} | ||
- name: Upload git revision | ||
run: | | ||
git log --first-parent --pretty=format:%%H HEAD~2..HEAD~1 > ktx.dll.git | ||
aws s3 cp ktx.dll.git s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/ ${{env.S3_PARAMS}} |
Oops, something went wrong.