forked from oomek/attractplus
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
191 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,191 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
PKG_CONFIG_PATH_x86_64_w64_mingw32_static: /usr/lib/mxe/usr/x86_64-w64-mingw32.static/lib/pkgconfig/ | ||
|
||
jobs: | ||
buildAM: | ||
name: ${{ matrix.platform.name }} ${{ matrix.config.name }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
platform: | ||
#- { name: Windows x64, , targetos: windows, os: ubuntu-20.04, amflags: CROSS=1 FE_WINDOWS_COMPILE=1, crossprefix: x86_64-w64-mingw32.static- } | ||
- { name: Linux x64 KMS, targetos: linux-x86, amflags: USE_DRM=1 } | ||
- { name: Linux x64 X11, targetos: linux-x86 } | ||
#- { name: MacOS, targetos: mac, os: macos-latest, amflags: prefix=.. USE_SYSTEM_SFML=1, flags: -DSFML_USE_SYSTEM_DEPS=1 } | ||
#- { name: armv7, targetos: linux-arm, os: ubuntu-20.04, archos: buster, shell: bash, amflags: USE_DRM=1 USE_MMAL=1} | ||
#- { name: aarch64, targetos: linux-arm, os: ubuntu-20.04, archos: buster, shell: bash, amflags: USE_DRM=1} | ||
config: | ||
- { name: shared, amflags: STATIC=0 } | ||
- { name: static, amflags: STATIC=1 } | ||
|
||
include: | ||
- platform: { targetos: linux-x86 } | ||
os: [ ubuntu-24.04, ubuntu-22.04, ubuntu-20.04 ] | ||
|
||
exclude: | ||
- platform: { target-os: linux-x86 } | ||
config: { name: shared } | ||
- platform: { os: macos-latest } | ||
config: { name: static } | ||
- platform: { targetos: linux-arm } | ||
config: { name: shared } | ||
|
||
steps: | ||
- name: AM+ - Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
path: am | ||
|
||
- name: Prepare | ||
id: vars | ||
run: | | ||
which nproc && nbproc=$(nproc) || nbproc=$(getconf _NPROCESSORS_ONLN) | ||
echo "nbproc=${nbproc}" >> $GITHUB_OUTPUT | ||
fe_version= | ||
[[ ${GITHUB_REF} =~ ^refs/tags/* ]] && fe_version="${GITHUB_REF#refs/*/}" | ||
echo "fe_version=${fe_version}" >> $GITHUB_OUTPUT | ||
- name: Install Linux Dependencies | ||
if: runner.os == 'Linux' && matrix.platform.name != 'Windows x64' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install pkgconf libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libavformat-dev libfontconfig1-dev libfreetype6-dev libswscale-dev libswresample-dev libarchive-dev libjpeg-dev libglu1-mesa-dev libegl1-mesa-dev libdrm-dev libcurl4-gnutls-dev libboost-system-dev libboost-filesystem-dev | ||
- name: Install Linux MXE for Windows cross-building | ||
if: matrix.platform.name == 'Windows x64' | ||
run: | | ||
sudo apt-get install \ | ||
software-properties-common \ | ||
lsb-release | ||
sudo apt-key adv \ | ||
--keyserver keyserver.ubuntu.com \ | ||
--recv-keys 86B72ED9 && \ | ||
sudo add-apt-repository \ | ||
"deb [arch=amd64] https://pkg.mxe.cc/repos/apt `lsb_release -sc` main" && \ | ||
sudo apt-get update | ||
sudo apt-get install \ | ||
mxe-x86-64-w64-mingw32.static-cc \ | ||
mxe-x86-64-w64-mingw32.static-openal \ | ||
mxe-x86-64-w64-mingw32.static-flac \ | ||
mxe-x86-64-w64-mingw32.static-vorbis \ | ||
mxe-x86-64-w64-mingw32.static-freetype \ | ||
mxe-x86-64-w64-mingw32.static-freetype-bootstrap \ | ||
mxe-x86-64-w64-mingw32.static-libarchive \ | ||
mxe-x86-64-w64-mingw32.static-curl \ | ||
mxe-x86-64-w64-mingw32.static-openjpeg \ | ||
mxe-x86-64-w64-mingw32.static-boost | ||
sudo apt-get install ./am/extlibs/mxe/mxe-x86-64-w64-mingw32.static-gcc_11.2.0-focal.deb | ||
sudo apt-get install ./am/extlibs/mxe/mxe-x86-64-w64-mingw32.static-brotli_1.1.0.deb | ||
sudo apt-get install ./am/extlibs/mxe/mxe-x86-64-w64-mingw32.static-ffmpeg_7.0.2.deb | ||
sudo ln -s /usr/lib/mxe/usr/bin/x86_64-w64-mingw32.static-gcc /usr/lib/mxe/usr/bin/x86_64-w64-mingw32.static-cc | ||
sudo pip install mingw-ldd | ||
echo "/usr/lib/mxe/usr/bin" >> $GITHUB_PATH | ||
echo "cross_prefix=x86_64-w64-mingw32.static-" >> $GITHUB_ENV | ||
echo "cross_toolchain=TOOLCHAIN=x86_64-w64-mingw32.static" >> $GITHUB_ENV | ||
- name: Install MacOS brew | ||
if: runner.os == 'macOS' | ||
run: | | ||
brew update | ||
brew upgrade | ||
brew install pkgconfig ffmpeg libarchive libvorbis flac jpeg-turbo boost sfml | ||
- name: Build AM+ (ARM) | ||
if: matrix.platform.name == 'armv7' || matrix.platform.name == 'aarch64' | ||
uses: uraimo/[email protected] | ||
with: | ||
arch: ${{ matrix.platform.name }} | ||
distro: ${{ matrix.platform.archos }} | ||
githubToken: ${{ github.token }} | ||
dockerRunArgs: | | ||
--volume "${GITHUB_WORKSPACE}/am:/am" | ||
install: | | ||
apt-get update -y -q | ||
apt-get install -y -q build-essential cmake pkgconf libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libavformat-dev libfontconfig1-dev libfreetype6-dev libswscale-dev libswresample-dev libarchive-dev libjpeg-dev libglu1-mesa-dev libgbm-dev libdrm-dev libegl1-mesa-dev libcurl4-gnutls-dev libboost-filesystem-dev libboost-system-dev | ||
run: | | ||
make -C am -j${{ steps.vars.outputs.nbproc }} VERBOSE=1 FE_VERSION=${{ steps.vars.outputs.fe_version }} ${{matrix.platform.amflags}} ${{matrix.config.amflags}} ${{env.cross_toolchain}} | ||
#~ - name: MacOS switch to GCC | ||
#~ if: runner.os == 'macOS' | ||
#~ run: | | ||
#~ echo "CC=/usr/local/bin/gcc-10" >> $GITHUB_ENV | ||
#~ echo "CXX=/usr/local/bin/g++-10" >> $GITHUB_ENV | ||
#~ echo "AR=/usr/local/bin/ar-10" >> $GITHUB_ENV | ||
|
||
- name: Build AM+ | ||
run: | | ||
make -C am -j${{ steps.vars.outputs.nbproc }} VERBOSE=1 FE_VERSION=${{ steps.vars.outputs.fe_version }} ${{matrix.platform.amflags}} ${{matrix.config.amflags}} ${{env.cross_toolchain}} | ||
- name: Build AM+ attract-console.exe (Windows only) | ||
if: matrix.platform.name == 'Windows x64' | ||
run: | | ||
make -C am smallclean ${{matrix.platform.amflags}} ${{matrix.config.amflags}} ${{env.cross_toolchain}} | ||
make -C am -j${{ steps.vars.outputs.nbproc }} VERBOSE=1 FE_VERSION=${{ steps.vars.outputs.fe_version }} ${{matrix.platform.amflags}} ${{matrix.config.amflags}} ${{env.cross_toolchain}} WINDOWS_CONSOLE=1 | ||
- name: Prepare artifacts | ||
if: runner.os != 'macOS' | ||
run: | | ||
mkdir -p "${GITHUB_WORKSPACE}"/artifacts | ||
for e in "${GITHUB_WORKSPACE}"/am/*.exe ; do | ||
echo "Gathering dll infos for $e ..." | ||
which mingw-ldd || continue | ||
for dll in $(mingw-ldd "$e" --dll-lookup-dirs /usr/lib/mxe/usr/x86_64-w64-mingw32.shared/bin/ "${GITHUB_WORKSPACE}"/sfml/install/lib/ | grep -v 'not found$' | tr -d ' ' | cut -d '>' -f 2) ; do | ||
cp "$dll" "${GITHUB_WORKSPACE}"/artifacts/ | ||
done | ||
done | ||
find "${GITHUB_WORKSPACE}"/am/obj/sfml/install/lib/ -name "*.dll" -o -name "*.so" -o -name "*.dylib" -exec cp -v {} "${GITHUB_WORKSPACE}"/artifacts/ \; | ||
cp am/attract* "${GITHUB_WORKSPACE}"/artifacts/ | ||
cp -R am/config/* "${GITHUB_WORKSPACE}"/artifacts/ | ||
7z a "attract-${{matrix.platform.name}}-${{matrix.config.name}}.7z" ./artifacts/* | ||
- name: Prepare macOS artifacts | ||
if: runner.os == 'macOS' | ||
run: | | ||
git -C am/ fetch --unshallow | ||
mkdir -p "${GITHUB_WORKSPACE}"/artifacts | ||
bash am/util/osx/appbuilder.sh | ||
7z a "attract-${{matrix.platform.name}}-${{matrix.config.name}}.7z" ./artifacts/* | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{matrix.platform.name}}-${{matrix.config.name}} | ||
path: attract-*.7z | ||
|
||
Release: | ||
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | ||
name: Release to github | ||
needs: buildAM | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: artifacts | ||
|
||
- name: Prepare artifacts | ||
id: prepare_artifacts | ||
run: | | ||
tag="${GITHUB_REF#refs/*/}" | ||
echo "current_tag=${tag}" >> $GITHUB_OUTPUT | ||
mkdir -p "${GITHUB_WORKSPACE}"/artifacts_for_release | ||
find "${GITHUB_WORKSPACE}"/artifacts/ -name "*.7z" | while read f ; do | ||
p="$(basename "$f")" | ||
cp -v "$f" "${GITHUB_WORKSPACE}/artifacts_for_release/attract-${GITHUB_REF#refs/*/}-${p#attract-}" | ||
done | ||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
name: Attract Mode Plus ${{ steps.prepare_artifacts.outputs.current_tag }} | ||
draft: true | ||
prerelease: false | ||
files: artifacts_for_release/attract-*.7z |