forked from assimp/assimp
-
Notifications
You must be signed in to change notification settings - Fork 6
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
6 changed files
with
210 additions
and
229 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* -text | ||
|
||
# Declare files that will always have LF line endings on checkout. | ||
*.cpp text eol=lf | ||
*.h text eol=lf | ||
|
This file was deleted.
Oops, something went wrong.
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,205 @@ | ||
name: LWJGL Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
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" | ||
|
||
jobs: | ||
linux: | ||
name: Linux | ||
runs-on: ubuntu-latest | ||
container: | ||
image: centos:7 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ARCH: [x64] | ||
include: | ||
- ARCH: x64 | ||
steps: | ||
- run: | | ||
yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm | ||
yum -y install git | ||
name: Upgrade git | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 3 | ||
- run: | | ||
yum -y install epel-release | ||
yum -y update | ||
name: Configure yum | ||
- run: | | ||
yum -y install centos-release-scl | ||
yum -y install devtoolset-11-gcc-c++ | ||
yum -y install cmake3 awscli | ||
name: Install build dependencies | ||
- run: | | ||
source scl_source enable devtoolset-11 || true | ||
cmake3 -B build -DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_TESTS=OFF -DASSIMP_BUILD_DRACO=ON -DASSIMP_BUILD_ZLIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" | ||
name: Configure build | ||
- run: | | ||
source scl_source enable devtoolset-11 || true | ||
cmake3 --build build | ||
strip build/bin/libassimp.so | ||
name: Build | ||
- run: | | ||
aws s3 cp build/bin/libassimp.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
aws s3 cp build/bin/libdraco.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload artifact | ||
- run: | | ||
git config --global --add safe.directory $PWD | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libassimp.so.git | ||
aws s3 cp libassimp.so.git s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload git revision | ||
linux-cross: | ||
name: Linux Cross | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ubuntu:18.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ARCH: [arm32, arm64] | ||
include: | ||
# ----- | ||
- ARCH: arm32 | ||
CROSS_ARCH: armhf | ||
PACKAGES: gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf libc6-dev-armhf-cross | ||
CROSS_PACKAGES: zlib1g-dev:armhf libc6-dev:armhf | ||
CC: CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++ | ||
STRIP: arm-linux-gnueabihf-strip | ||
# ----- | ||
- ARCH: arm64 | ||
CROSS_ARCH: arm64 | ||
PACKAGES: gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-dev-arm64-cross | ||
CROSS_PACKAGES: zlib1g-dev:arm64 libc6-dev:arm64 | ||
CC: CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ | ||
STRIP: aarch64-linux-gnu-strip | ||
env: | ||
LWJGL_ARCH: ${{matrix.ARCH}} | ||
steps: | ||
- 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 | ||
name: Upgrade git | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 3 | ||
- run: DEBIAN_FRONTEND=noninteractive apt-get -yq install cmake ${{matrix.PACKAGES}} | ||
name: Install dependencies | ||
- 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/armhf,arm64/' /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: Prepare cross-compilation | ||
- run: apt-get -yq --allow-unauthenticated --no-install-suggests --no-install-recommends install ${{matrix.CROSS_PACKAGES}} -o Dpkg::Options::="--force-overwrite" | ||
name: Install cross-compilation dependencies | ||
- run: ${{matrix.CC}} cmake -B build -DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_TESTS=OFF -DASSIMP_BUILD_DRACO=ON -DASSIMP_BUILD_ZLIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" | ||
name: Configure build | ||
- run: | | ||
cmake --build build | ||
${{matrix.STRIP}} build/bin/libassimp.so | ||
name: Build | ||
- run: | | ||
aws s3 cp build/bin/libassimp.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
aws s3 cp build/bin/libdraco.so s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload artifacts | ||
- run: | | ||
git config --global --add safe.directory $(pwd) | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libassimp.so.git | ||
aws s3 cp libassimp.so.git s3://lwjgl-build/nightly/linux/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload git revision | ||
macos: | ||
name: macOS | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
ARCH: [x64, arm64] | ||
include: | ||
- ARCH: x64 | ||
CMAKE_PARAMS: -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 | ||
- ARCH: arm64 | ||
CMAKE_PARAMS: -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DCMAKE_OSX_ARCHITECTURES=arm64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 3 | ||
- run: | | ||
mkdir build | ||
cd build | ||
cmake -DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_TESTS=OFF -DASSIMP_BUILD_DRACO=ON -DASSIMP_BUILD_ZLIB=ON -DCMAKE_BUILD_TYPE=Release ${{matrix.CMAKE_PARAMS}} .. | ||
name: Configure build | ||
- run: | | ||
cd build | ||
cmake --build . | ||
strip -u -r bin/libassimp.dylib | ||
name: Build | ||
- run: | | ||
aws s3 cp build/bin/libassimp.dylib s3://lwjgl-build/nightly/macosx/${{matrix.ARCH}}/ $S3_PARAMS | ||
aws s3 cp build/bin/libdraco.dylib s3://lwjgl-build/nightly/macosx/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload artifacts | ||
- run: | | ||
git log --first-parent --pretty=format:%H HEAD~2..HEAD~1 > libassimp.dylib.git | ||
aws s3 cp libassimp.dylib.git s3://lwjgl-build/nightly/macosx/${{matrix.ARCH}}/ $S3_PARAMS | ||
name: Upload git revision | ||
windows: | ||
name: Windows | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
ARCH: [x86, x64, arm64] | ||
include: | ||
- ARCH: x86 | ||
PLATFORM: Win32 | ||
- ARCH: x64 | ||
PLATFORM: x64 | ||
- ARCH: arm64 | ||
PLATFORM: ARM64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 3 | ||
# disabled Link Time Optimization for Draco | ||
- run: | | ||
mkdir build | ||
cd build | ||
cmake -G "Visual Studio 17 2022" -A ${{matrix.PLATFORM}} -DASSIMP_BUILD_ASSIMP_TOOLS=OFF -DASSIMP_BUILD_TESTS=OFF -DASSIMP_BUILD_DRACO=ON -DASSIMP_BUILD_ZLIB=ON -DCMAKE_C_FLAGS_RELEASE="/MT /EHsc /Ox /GF /Gy /GS- /DNDEBUG" -DCMAKE_CXX_FLAGS_RELEASE="/MT /EHsc /Ox /GF /Gy /GS- /DNDEBUG" -DCMAKE_SHARED_LINKER_FLAGS_RELEASE="/OPT:REF,ICF /INCREMENTAL:NO" .. | ||
shell: cmd | ||
name: Configure build | ||
- run: | | ||
cd build | ||
cmake --build . --config Release | ||
shell: cmd | ||
name: Build | ||
- run: | | ||
aws s3 cp build\bin\Release\assimp-vc143-mt.dll s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/assimp.dll ${{env.S3_PARAMS}} | ||
aws s3 cp build\bin\Release\draco.dll s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/ ${{env.S3_PARAMS}} | ||
shell: cmd | ||
name: Upload artifacts | ||
- run: | | ||
git log --first-parent --pretty=format:%%H HEAD~2..HEAD~1 > assimp.dll.git | ||
aws s3 cp assimp.dll.git s3://lwjgl-build/nightly/windows/${{matrix.ARCH}}/ ${{env.S3_PARAMS}} | ||
shell: cmd | ||
name: Upload git revision |
Oops, something went wrong.