-
-
Notifications
You must be signed in to change notification settings - Fork 36
218 lines (182 loc) · 6.26 KB
/
macos.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
name: MacOS Build
on:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DOTNET_INSTALL_DIR: ${{ github.workspace }}/.dotnet/
DOTNET_VERSION: '8.0.x'
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/vcpkg-archives/
IS_PRE_RELEASE: ${{ !contains(github.ref, 'main') || contains(github.event.head_commit.message, '[prerelease]') }}
jobs:
BuildNugetPackages-MacOS:
strategy:
matrix:
os: [macos-14, macos-13]
include:
- os: macos-14
arch: arm64
- os: macos-13
arch: x64
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: osx
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: NuGet - set credentials
uses: ./.github/actions/set-credentials
with:
api-key-github: ${{ secrets.API_KEY_GITHUB }}
api-key-nuget: ${{ secrets.API_KEY_NUGET }}
api-user-github: ${{ secrets.API_USER_GITHUB }}
api-user-nuget: ${{ secrets.API_USER_NUGET }}
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_14.3.1.app/Contents/Developer'
- name: Restore cached packages
id: build-packages-cache-restore
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/build-osx/
${{ github.workspace }}/.dotnet/
${{ github.workspace }}/vcpkg-archives/
key: ${{ runner.os }}-packages-${{ matrix.os }}
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install CMake
run: |
pipx install cmake
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install deps
run: |
${{ github.workspace }}/osx/before-install.sh
- name: Fetch VCPKG packages
run: |
mkdir -p ${{ github.workspace }}/vcpkg-archives/
make -f vcpkg-makefile BUILD_ARCH=${{ matrix.arch }} build_cleanup
make -f vcpkg-makefile BUILD_ARCH=${{ matrix.arch }}
- name: Compile HDF
run: |
make -f gdal-makefile hdf-force BUILD_ARCH=${{ matrix.arch }}
- name: Compile PROJ
run: |
make -f gdal-makefile proj-force BUILD_ARCH=${{ matrix.arch }}
- name: Compile GDAL
run: |
make -f gdal-makefile gdal-force BUILD_ARCH=${{ matrix.arch }}
- name: Collect deps
run: |
make -f collect-deps-makefile BUILD_ARCH=${{ matrix.arch }}
- name: Create packages
run: |
make -f publish-makefile pack BUILD_ARCH=${{ matrix.arch }} BUILD_NUMBER_TAIL=${{ github.run_number }}
- name: Store metadata as artifact
uses: actions/upload-artifact@v4
with:
name: metadata-osx-${{ matrix.arch }}
path: |
shared/bundle/targets/
package-build/*.csproj
overwrite: true
- name: GDAL formats osx
uses: actions/upload-artifact@v4
with:
name: formats-osx-${{ matrix.arch }}
path: |
tests/gdal-formats/
overwrite: true
- name: Store packages as artifact
uses: actions/upload-artifact@v4
with:
name: packages-osx-${{ matrix.arch }}
path: nuget/*.nupkg
overwrite: true
TestPackages-MacOS:
strategy:
matrix:
os: [macos-14, macos-13]
include:
- os: macos-14
arch: arm64
- os: macos-13
arch: x64
needs: BuildNugetPackages-MacOS
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: osx
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: packages-osx-${{ matrix.arch }}
path: nuget/
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: NuGet - set credentials
uses: ./.github/actions/set-credentials
with:
api-key-github: ${{ secrets.API_KEY_GITHUB }}
api-key-nuget: ${{ secrets.API_KEY_NUGET }}
api-user-github: ${{ secrets.API_USER_GITHUB }}
api-user-nuget: ${{ secrets.API_USER_NUGET }}
- name: Test packages
run: |
make -f test-makefile BUILD_ARCH=${{ matrix.arch }} BUILD_NUMBER_TAIL=${{ github.run_number }}
PushPackages-Macos:
needs: TestPackages-MacOS
runs-on: ubuntu-latest
defaults:
run:
working-directory: osx
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download artifact - packages
uses: actions/download-artifact@v4
with:
pattern: packages-osx*
merge-multiple: true
path: nuget/
- name: Download artifact - metadata
uses: actions/download-artifact@v4
with:
pattern: metadata-osx*
merge-multiple: true
- name: NuGet - set credentials
uses: ./.github/actions/set-credentials
with:
api-key-github: ${{ secrets.API_KEY_GITHUB }}
api-key-nuget: ${{ secrets.API_KEY_NUGET }}
api-user-github: ${{ secrets.API_USER_GITHUB }}
api-user-nuget: ${{ secrets.API_USER_NUGET }}
- name: Build bundle
run: |
make -f publish-makefile pack-bundle-only CAT_NAME=osx PRERELEASE=${{ env.IS_PRE_RELEASE }} BUILD_NUMBER_TAIL=${{ github.run_number }}
- name: Store packages as artifact
uses: actions/upload-artifact@v4
with:
name: packages-osx-final
path: nuget/*.nupkg
overwrite: true
- name: Push packages
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: |
make -f ../unix/push-packages-makefile BUILD_NUMBER_TAIL=${{ github.run_number }} API_KEY_GITHUB=${{ secrets.API_KEY_GITHUB }} API_KEY_NUGET=${{ secrets.API_KEY_NUGET }}