forked from dchapyshev/aspia
-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (92 loc) · 3.19 KB
/
macos.yml
File metadata and controls
109 lines (92 loc) · 3.19 KB
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
name: macos
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'LICENSE.md'
- 'CONTRIBUTING.md'
- 'CODE_OF_CONDUCT.md'
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
VCPKG_INSTALLED_DIR: ${{ github.workspace }}/builds/ninja-vcpkg-ci/vcpkg_installed
VCPKG_ROOT_PROJECT: ${{ github.workspace }}/vcpkg4aspia
VCPKG_BINARY_SOURCES: 'default,readwrite'
jobs:
build-all-matrix:
name: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: true
matrix:
os: [macos15]
arch: [arm64, x86_64]
build_type: [release, debug]
include:
- os: macos15
arch: x86_64
triplet: x64-osx
- os: macos15
arch: arm64
triplet: arm64-osx
steps:
# Step 1
- name: Checkout
uses: actions/checkout@v4
with:
submodules: false
# Step 2
- name: Checkout Submodule
uses: actions/checkout@v4
with:
repository: dchapyshev/vcpkg4aspia
path: vcpkg4aspia
# Step 3
- name: Dependencies, Build, Tests (MacOS/Bash)
env:
# This vars used inside CMake
VCPKG_DEFAULT_BINARY_CACHE: /opt/vcpkg/bincache-${{ matrix.triplet }}
VCPKG_TRIPLET: ${{ matrix.triplet }}
VCPKG_DEFAULT_HOST_TRIPLET: ${{ matrix.triplet }}
VCPKG_DOWNLOADS: /opt/vcpkg/downloads
run: |
export VCPKG_ROOT=$VCPKG_ROOT_PROJECT
env
if [ -z "${{ matrix.triplet }}" ]; then
echo "VCPKG_TRIPLET is empty"
exit 1
fi
# Need to backup vcpkg executable to prevent it's rebuild/redownload each time
if [ -f $VCPKG_DEFAULT_BINARY_CACHE/vcpkg.bak ]; then
echo "Restore vcpkg executable"
cp $VCPKG_DEFAULT_BINARY_CACHE/vcpkg.bak vcpkg4aspia/vcpkg
fi
mkdir -p $VCPKG_DEFAULT_BINARY_CACHE
mkdir -p $VCPKG_DOWNLOADS
export PATH="/Applications/CMake.app/Contents/bin:$PATH"
# Build vcpkg dependencies
arch -arch ${{ matrix.arch }} cmake --preset ninja-vcpkg-ci
# Build project
arch -arch ${{ matrix.arch }} cmake --build --preset ninja-vcpkg-ci-${{ matrix.build_type }}
# Run tests
ctest --preset ninja-vcpkg-ci-${{ matrix.build_type }}
# Create dmg packages
cpack --config ${{ github.workspace }}/builds/ninja-vcpkg-ci/CPackConfig.cmake -C ${{ matrix.build_type }}
# Need to backup vcpkg executable to prevent it's rebuild/redownload each time
if [ -f vcpkg4aspia/vcpkg ]; then
echo "Backup vcpkg executable"
cp vcpkg4aspia/vcpkg $VCPKG_DEFAULT_BINARY_CACHE/vcpkg.bak
fi
# Step 4
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.build_type }}
path: |
${{ github.workspace }}/*.dmg
if-no-files-found: error
retention-days: 7