-
-
Notifications
You must be signed in to change notification settings - Fork 3
75 lines (64 loc) · 2.67 KB
/
macos.yaml
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
---
name: 🍎 MacOS
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '40 7 * * *'
# TODO: probably create a nightly job
jobs:
package:
runs-on: macos-13
strategy:
matrix:
include:
- architecture: 'x86_64'
conda_platform: 'osx-64'
- architecture: 'arm64'
conda_platform: 'osx-arm64'
name: Package for macOS
steps:
- name: 🐣 Checkout
uses: actions/checkout@v3
- name: 🐣 Checkout Constructor
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: opengisch/constructor
ref: qgis-bundling
path: constructor
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
activate-environment: "constructor"
environment-file: "environment.yaml"
- name: 🌾 Get latest version
shell: bash
run: |
QGIS_VERSION=$(conda search -c conda-forge -f qgis | grep py311 | tail -n 1 | tr -s ' ' | cut -f 2 -d ' ')
QGIS_VERSION_SHORT=$(echo $QGIS_VERSION | cut -d'.' -f 1,2)
echo QGIS_VERSION=$QGIS_VERSION >> $GITHUB_ENV
echo QGIS_VERSION_SHORT=$QGIS_VERSION_SHORT >> $GITHUB_ENV
echo MICROMAMBA_PLATFORM=$MICROMAMBA_PLATFORM >> $GITHUB_ENV
sed -i '' "s/__ver__/$QGIS_VERSION/g" construct.yaml
sed -i '' "s/__shortver__/$QGIS_VERSION_SHORT/g" construct.yaml
- name: 📦 Package
shell: pwsh
run: |
curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest
curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ matrix.conda_platform }}"' | cut -d : -f 2,3 | tr -d '"'
curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ matrix.conda_platform }}"' | cut -d : -f 2,3 | tr -d '"' | wget -qi -
wget https://github.com/mamba-org/micromamba-releases/releases/download/1.4.9-0/micromamba-${{ matrix.conda_platform }}
ls -al
conda build constructor
conda install /Users/runner/miniconda3/envs/constructor/conda-bld/osx-64/*.tar.bz2
constructor --platform=${{ matrix.conda_platform }} --conda-exe=micromamba-${{ matrix.conda_platform }} .
- name: 📦 Upload artifacts
uses: actions/upload-artifact@v3
with:
name: QGIS-${{ env.QGIS_VERSION }}-MacOSX-${{ matrix.architecture }}
path: QGIS-${{ env.QGIS_VERSION }}-MacOSX-${{ matrix.architecture }}.pkg