forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1.34 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
name: MacOS build
on:
push:
paths-ignore:
- 'doc/**'
branches-ignore:
- 'backport**'
pull_request:
paths-ignore:
- 'doc/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
macos_build:
# FIXME: Python tests fail with "ModuleNotFoundError: No module named '_gdal'" with macos-12
runs-on: macos-11
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
channels: conda-forge
auto-update-conda: true
- name: Install Requirements
shell: bash -l {0}
run: |
source ./ci/travis/osx/before_install.sh
- name: Build
shell: bash -l {0}
run: |
source ./ci/travis/osx/install.sh
- name: Run tests
shell: bash -l {0}
run: |
source ./ci/travis/osx/script.sh
env:
# Emulate a few Travis-CI env variable so that some tests get properly skipped
TRAVIS: true
TRAVIS_OS_NAME: osx
BUILD_NAME: macos_build_conda