2020-12-11 14:24:42 +01:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
|
|
|
BUILD_TYPE: Release
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2020-12-18 21:44:13 +01:00
|
|
|
linux:
|
2020-12-11 14:24:42 +01:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
name: 🐧 Ubuntu 20.04
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: 🧰 Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-02-24 21:04:00 +01:00
|
|
|
submodules: recursive
|
2020-12-11 14:24:42 +01:00
|
|
|
|
|
|
|
- name: ⬇️ Install dependencies
|
|
|
|
run: |
|
2021-08-25 15:02:25 +02:00
|
|
|
sudo apt update
|
2021-02-28 15:24:02 +01:00
|
|
|
sudo bash dist/get_deps_debian.sh
|
2020-12-11 14:24:42 +01:00
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: 🛠️ Build
|
2020-12-11 14:24:42 +01:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-02-01 17:26:05 +01:00
|
|
|
CC=gcc-10 CXX=g++-10 cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="$PWD/install" \
|
|
|
|
..
|
|
|
|
make -j 4 install
|
2020-12-11 14:24:42 +01:00
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: 📦 Bundle Flatpak
|
2021-08-25 15:19:55 +02:00
|
|
|
run: |
|
|
|
|
sudo apt install flatpak flatpak-builder
|
|
|
|
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
2021-08-25 15:29:08 +02:00
|
|
|
flatpak --user install -y flathub org.freedesktop.Platform//20.08
|
|
|
|
flatpak --user install -y flathub org.freedesktop.Sdk//20.08
|
2021-08-25 15:19:55 +02:00
|
|
|
flatpak-builder --repo=imhex _flatpak dist/net.werwolv.ImHex.yaml
|
2021-08-25 16:06:30 +02:00
|
|
|
flatpak build-bundle imhex imhex.flatpak net.werwolv.ImHex stable
|
2021-08-25 14:52:07 +02:00
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: ⬆️ Upload ELF
|
2021-01-08 16:25:12 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: Linux ELF
|
2021-02-01 17:26:05 +01:00
|
|
|
path: |
|
|
|
|
build/install/*
|
2021-01-08 16:25:12 +01:00
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: ⬆️ Upload Flatpak
|
2021-08-25 14:52:07 +02:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: Linux Flatpak
|
|
|
|
path: |
|
2021-08-25 16:06:30 +02:00
|
|
|
imhex.flatpak
|
2021-08-25 14:52:07 +02:00
|
|
|
|
2021-01-10 14:22:34 +01:00
|
|
|
win:
|
2020-12-11 14:24:42 +01:00
|
|
|
runs-on: windows-latest
|
2021-02-28 15:24:02 +01:00
|
|
|
name: 🟦 Windows MINGW64
|
2020-12-11 14:24:42 +01:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
|
|
|
steps:
|
|
|
|
- name: 🧰 Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-02-24 21:04:00 +01:00
|
|
|
submodules: recursive
|
2021-02-28 16:05:05 +01:00
|
|
|
- name: 🟦 Install msys2
|
2020-12-11 14:24:42 +01:00
|
|
|
uses: msys2/setup-msys2@v2
|
2021-02-28 16:05:05 +01:00
|
|
|
- name: ⬇️ Install dependencies
|
2021-02-28 15:34:44 +01:00
|
|
|
run: |
|
2021-02-28 15:26:37 +01:00
|
|
|
bash dist/get_deps_msys2.sh
|
2020-12-11 14:24:42 +01:00
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: 🛠️ Build
|
2020-12-11 14:24:42 +01:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-01-10 14:22:34 +01:00
|
|
|
# Get path to mingw python library
|
2021-06-07 22:42:56 +02:00
|
|
|
PYTHON_LIB_NAME=$(pkg-config --libs-only-l python3 | sed 's/^-l//' | sed 's/ //')
|
2021-01-10 14:22:34 +01:00
|
|
|
PYTHON_LIB_PATH=$(cygpath -m $(which lib${PYTHON_LIB_NAME}.dll))
|
|
|
|
|
|
|
|
cmake -G "MinGW Makefiles" \
|
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="$PWD/install" \
|
|
|
|
-DCREATE_PACKAGE=ON \
|
|
|
|
-DPython_LIBRARY="$PYTHON_LIB_PATH" \
|
|
|
|
..
|
|
|
|
mingw32-make -j4
|
|
|
|
mingw32-make install
|
|
|
|
cpack
|
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: ⬆️ Upload Portable ZIP
|
2021-01-10 14:22:34 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: Windows Portable ZIP
|
|
|
|
path: |
|
|
|
|
build/install/*
|
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: ⬆️ Upload Windows Installer
|
2021-01-08 16:25:12 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2021-01-10 14:22:34 +01:00
|
|
|
name: Windows Installer
|
2021-01-08 16:25:12 +01:00
|
|
|
path: |
|
2021-01-10 14:22:34 +01:00
|
|
|
build/*.msi
|
2020-12-11 14:24:42 +01:00
|
|
|
|
2021-08-24 15:56:49 +02:00
|
|
|
macos:
|
|
|
|
if: false
|
2021-01-25 15:09:30 +01:00
|
|
|
runs-on: macos-11.0
|
|
|
|
name: 🍎 macOS 11.0
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: 🧰 Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-02-24 21:04:00 +01:00
|
|
|
submodules: recursive
|
2021-01-25 15:09:30 +01:00
|
|
|
|
|
|
|
- name: ⬇️ Install dependencies
|
|
|
|
run: |
|
|
|
|
brew bundle --no-lock --file dist/Brewfile
|
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: 🛠️ Build
|
2021-01-25 15:09:30 +01:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-02-02 23:11:23 +01:00
|
|
|
CC=$(brew --prefix llvm)/bin/clang \
|
|
|
|
CXX=$(brew --prefix llvm)/bin/clang++ \
|
|
|
|
PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig":"$(brew --prefix)/lib/pkgconfig" \
|
2021-06-16 08:05:28 +02:00
|
|
|
MACOSX_DEPLOYMENT_TARGET="10.15" \
|
2021-02-02 23:11:23 +01:00
|
|
|
cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
|
|
|
-DCREATE_BUNDLE=ON \
|
|
|
|
-DCREATE_PACKAGE=ON \
|
|
|
|
..
|
2021-01-25 15:09:30 +01:00
|
|
|
make -j 4 package
|
|
|
|
|
2021-09-11 18:58:53 +02:00
|
|
|
- name: ⬆️ Upload DMG
|
2021-01-25 15:09:30 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: macOS DMG
|
|
|
|
path: build/*.dmg
|