-
Notifications
You must be signed in to change notification settings - Fork 300
69 lines (59 loc) · 1.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
name: macOS Build
on:
push:
branches:
- master
tags:
- uuu*
pull_request:
types:
- opened
- synchronize
jobs:
build:
name: macOS Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-14
- macos-12
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up environment
run: brew install libusb pkg-config zstd tinyxml2
- name: Build
run: |
git fetch --tags --force # Retrieve annotated tags. #issue 290
export PATH="/usr/local/Cellar/pkg-config/0.29.2_3/bin:${PATH}"; pkg-config --list-all; cmake -DOPENSSL_ROOT_DIR=$(brew --prefix)/opt/openssl . ; make
- name: Rename_x86
if: matrix.os == 'macos-12'
run: cp uuu/uuu uuu_mac_x86
- name: Rename_arm
if: matrix.os == 'macos-14'
run: cp uuu/uuu uuu_mac_arm
- name: Upload Build Artifacts
if: matrix.os == 'macos-12'
uses: actions/upload-artifact@v3
with:
name: uuu_mac_x86
path: uuu_mac_x86
- name: Upload Build Artifacts
if: matrix.os == 'macos-14'
uses: actions/upload-artifact@v3
with:
name: uuu_mac_arm
path: uuu_mac_arm
- name: Create or Update Release
if: github.ref_type == 'tag'
uses: ncipollo/release-action@v1
with:
name: Release ${{ github.ref_name }}
tag: ${{ github.ref_name }}
commit: ${{ github.sha }}
allowUpdates: true
prerelease: true
artifacts: "uuu_mac_*"