-
Notifications
You must be signed in to change notification settings - Fork 80
136 lines (131 loc) · 4.99 KB
/
build.yml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Merkaartor build
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
name: Windows / Qt6
steps:
- run: git config --global core.autocrlf input
shell: bash
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: msys2/setup-msys2@v2
name: Install dependencies
with:
msystem: MINGW64
update: true
path-type: strict
install: git mingw-w64-x86_64-toolchain mingw-w64-x86_64-python-pip msys/make msys/git mingw64/mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-qt6 mingw64/mingw-w64-x86_64-gdal mingw64/mingw-w64-x86_64-proj mingw64/mingw-w64-x86_64-openjpeg2 mingw64/mingw-w64-x86_64-json-c mingw64/mingw-w64-x86_64-cmake mingw64/mingw-w64-x86_64-exiv2 mingw64/mingw-w64-x86_64-nsis mingw64/mingw-w64-x86_64-mesa mingw64/mingw-w64-x86_64-protobuf
- name: Build
shell: msys2 {0}
run: |
./ci/travis-windows-script.sh
- name: Upload artifacts
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
if: contains('refs/heads/master refs/heads/gh-actions', github.ref) || startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
pip3 install cloudsmith-cli
./build/upload-artifacts.sh
macosx:
runs-on: macos-13
strategy:
matrix:
QT_MAJOR: [5, 6]
name: MacOS X / Qt${{ matrix.QT_MAJOR }}
env:
QT_MAJOR: ${{ matrix.QT_MAJOR }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
brew list
brew install gdal exiv2 proj qt${{ matrix.QT_MAJOR }} cmake inih dylibbundler
brew unlink exiv2
brew install --HEAD exiv2
brew link qt${{ matrix.QT_MAJOR }}
- name: Build
run: |
./ci/travis-osx-script.sh
- name: Upload artifacts
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
if: (matrix.QT_MAJOR == 6) && (contains('refs/heads/master refs/heads/gh-actions', github.ref) || startsWith(github.ref, 'refs/tags/'))
run: |
pip3 install cloudsmith-cli --break-system-packages
./build/upload-artifacts.sh
linux-qt5:
runs-on: ubuntu-20.04
strategy:
matrix:
SNAPSHOT: [0, 1]
CMAKE_UNITY_BUILD: ["ON", "OFF"]
name: Linux / Ubuntu 20.04 / Qt5 (SNAPSHOT=${{ matrix.SNAPSHOT }}) / CMAKE_UNITY_BUILD=${{ matrix.CMAKE_UNITY_BUILD }}
env:
QT_PREFIX: 515
QT_REPO: ppa:beineri/opt-qt-5.15.4-focal
TRAVIS_DIST: focal
SNAPSHOT: ${{ matrix.SNAPSHOT }}
CMAKE_UNITY_BUILD: ${{ matrix.CMAKE_UNITY_BUILD }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
./ci/travis-linux-install.sh
- name: Build
run: |
./ci/travis-linux-script.sh
linux-qt6:
runs-on: ubuntu-22.04
strategy:
matrix:
SNAPSHOT: [0, 1]
CMAKE_UNITY_BUILD: ["ON", "OFF"]
name: Linux / Ubuntu 22.04 / Qt6 (SNAPSHOT=${{ matrix.SNAPSHOT }}) / CMAKE_UNITY_BUILD=${{ matrix.CMAKE_UNITY_BUILD }}
env:
SNAPSHOT: ${{ matrix.SNAPSHOT }}
CMAKE_UNITY_BUILD: ${{ matrix.CMAKE_UNITY_BUILD }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get -y install gdb libgdal-dev libproj-dev qt6-base-dev qt6-base-dev-tools qt6-tools-dev build-essential libgl1-mesa-dev cmake git libexiv2-dev libqt6svg* libqt6networkauth* libqt6core5compat* qt6-l10n-tools qt6-tools-dev-tools protobuf-compiler
- name: Build
run: |
./ci/travis-linux-script.sh
linux-appimage:
runs-on: ubuntu-22.04
name: Linux / AppImage
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get -y install gdb libgdal-dev libproj-dev qt6-base-dev qt6-base-dev-tools qt6-tools-dev build-essential libgl1-mesa-dev cmake git libexiv2-dev libqt6svg* libqt6networkauth* libqt6core5compat* qt6-l10n-tools qt6-tools-dev-tools protobuf-compiler
sudo apt-get -y install python3-pip libglib2.0-dev bash dash squashfs-tools zsync fakeroot
sudo pip install git+https://github.com/AppImageCrafters/appimage-builder.git
- name: Build
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DEXTRA_TESTS=OFF
make -j3
make DESTDIR=AppDir install
appimage-builder --skip-tests
- name: Upload artifacts
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
if: contains('refs/heads/master refs/heads/gh-actions refs/heads/appimage', github.ref) || startsWith(github.ref, 'refs/tags/')
run: |
pip3 install cloudsmith-cli
./build/upload-artifacts.sh