1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
name: make
on: [push, pull_request]
jobs:
ubuntu:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt -qq update
sudo apt install -y texlive-binaries texlive-metapost texlive-lang-czechslovak texlive-lang-cyrillic libproj-dev libwxgtk3.2-dev libvtk9-dev survex imagemagick ghostscript libfmt-dev
- name: compile therion
run: |
make config-debian
make
make tests
sudo make install
./therion --print-symbols
# - name: make samples
# run: make samples
# mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - name: install dependencies
# run: |
# # brew update # commented out because of conflicting python versions
# brew tap homebrew/core
# rm /usr/local/bin/2to3
# brew install wxwidgets vtk proj fmt
# - name: compile therion
# run: |
# make config-macosx
# make ./therion
# make loch/loch
# make tests
# ./therion --version
# mxe-i686:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v4
# - name: install dependencies
# run: |
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9
# sudo add-apt-repository 'deb [arch=amd64] https://mirror.mxe.cc/repos/apt focal main'
# sudo apt -qq update
# sudo apt install -y mxe-i686-w64-mingw32.static-binutils mxe-i686-w64-mingw32.static-bzip2 mxe-i686-w64-mingw32.static-expat mxe-i686-w64-mingw32.static-freetype-bootstrap mxe-i686-w64-mingw32.static-gcc mxe-i686-w64-mingw32.static-gettext mxe-i686-w64-mingw32.static-glib mxe-i686-w64-mingw32.static-harfbuzz mxe-i686-w64-mingw32.static-jpeg \
# mxe-i686-w64-mingw32.static-libiconv mxe-i686-w64-mingw32.static-libpng mxe-i686-w64-mingw32.static-tiff mxe-i686-w64-mingw32.static-vtk mxe-i686-w64-mingw32.static-wxwidgets mxe-i686-w64-mingw32.static-xz mxe-i686-w64-mingw32.static-zlib mxe-i686-w64-mingw32.static-proj
# - name: compile therion
# run: |
# export PATH=/usr/lib/mxe/usr/bin:$PATH
# perl makeconfig.pl PLATFORM WIN32CROSS
# cd loch; perl makeconfig.pl PLATFORM WIN32CROSS; cd ..
# make OUTDIR=. therion
# make OUTDIR=. loch/loch
# mxe-x86_64:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v4
# - name: install dependencies
# run: |
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9
# sudo add-apt-repository 'deb [arch=amd64] https://mirror.mxe.cc/repos/apt focal main'
# sudo apt -qq update
# sudo apt install -y mxe-x86-64-w64-mingw32.static-binutils mxe-x86-64-w64-mingw32.static-bzip2 mxe-x86-64-w64-mingw32.static-expat mxe-x86-64-w64-mingw32.static-freetype-bootstrap mxe-x86-64-w64-mingw32.static-gcc mxe-x86-64-w64-mingw32.static-gettext mxe-x86-64-w64-mingw32.static-glib mxe-x86-64-w64-mingw32.static-harfbuzz mxe-x86-64-w64-mingw32.static-jpeg \
# mxe-x86-64-w64-mingw32.static-libiconv mxe-x86-64-w64-mingw32.static-libpng mxe-x86-64-w64-mingw32.static-tiff mxe-x86-64-w64-mingw32.static-vtk mxe-x86-64-w64-mingw32.static-wxwidgets mxe-x86-64-w64-mingw32.static-xz mxe-x86-64-w64-mingw32.static-zlib mxe-x86-64-w64-mingw32.static-proj
# - name: compile therion
# run: |
# export PATH=/usr/lib/mxe/usr/bin:$PATH
# perl makeconfig.pl PLATFORM WIN32CROSS
# cd loch; perl makeconfig.pl PLATFORM WIN32CROSS; cd ..
# make CROSS=x86_64-w64-mingw32.static- OUTDIR=. therion
# make CROSS=x86_64-w64-mingw32.static- OUTDIR=. loch/loch
# mingw:
# runs-on: windows-latest
# strategy:
# matrix:
# include: [
# { msystem: MINGW64, arch: x86_64 }
# ]
# defaults:
# run:
# shell: msys2 {0}
# steps:
# - uses: actions/checkout@v4
# - uses: msys2/setup-msys2@v2
# with:
# msystem: ${{ matrix.msystem }}
# update: true
# install: python mingw-w64-${{ matrix.arch }}-freetype mingw-w64-${{ matrix.arch }}-cmake mingw-w64-${{ matrix.arch }}-pkgconf mingw-w64-${{ matrix.arch }}-proj mingw-w64-${{ matrix.arch }}-vtk mingw-w64-${{ matrix.arch }}-wxWidgets mingw-w64-${{ matrix.arch }}-gcc mingw-w64-${{ matrix.arch }}-make mingw-w64-${{ matrix.arch }}-tcl mingw-w64-${{ matrix.arch }}-jbigkit mingw-w64-${{ matrix.arch }}-fmt
# - name: compile therion
# run: |
# mingw32-make config-win32
# mingw32-make OUTDIR=. therion
# mingw32-make OUTDIR=. loch/loch
# mingw32-make OUTDIR=. tests
|