-
Notifications
You must be signed in to change notification settings - Fork 18
154 lines (131 loc) · 5.3 KB
/
vcpkg.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
name: Test vcpkg integration
on:
push:
branches:
- main
pull_request:
jobs:
build-static:
runs-on: ${{ matrix.os }}
name: "Static linkage"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
build_type: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: "Set environmental variables"
shell: bash
run: |
echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> $GITHUB_ENV
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y \
ninja-build
- name: Setup Ninja
if: matrix.os == 'macos-latest'
uses: seanmiddleditch/gha-setup-ninja@master
- name: Configure and build (macOS)
working-directory: ./tests/vcpkg
if: matrix.os == 'macos-latest'
run: |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-osx
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Configure and build (Ubuntu)
working-directory: ./tests/vcpkg
if: matrix.os == 'ubuntu-latest'
run: |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-linux
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Configure and build (Windows)
working-directory: ./tests/vcpkg
if: matrix.os == 'windows-latest'
run: |
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-windows-static -DENABLE_STATIC=ON
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Open a tmate debug session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
timeout-minutes: 15
- name: Run Application (Unix)
working-directory: ./tests/vcpkg/build
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
./realm_helloworld
- name: Run Application (Windows)
working-directory: ./tests/vcpkg/build
if: matrix.os == 'windows-latest'
run: |
cd ${{matrix.build_type}}
start realm_helloworld.exe
build-dynamic:
runs-on: ${{ matrix.os }}
name: "Dynamic linkage"
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
build_type: [ Debug, Release ]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: "Set environmental variables"
shell: bash
run: |
echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> $GITHUB_ENV
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y \
ninja-build
- name: Setup Ninja
if: matrix.os == 'macos-latest'
uses: seanmiddleditch/gha-setup-ninja@master
- name: Configure and build (macOS)
working-directory: ./tests/vcpkg
if: matrix.os == 'macos-latest'
run: |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-osx-dynamic
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Configure and build (Ubuntu)
working-directory: ./tests/vcpkg
if: matrix.os == 'ubuntu-latest'
run: |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-linux-dynamic
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Configure and build (Windows)
working-directory: ./tests/vcpkg
if: matrix.os == 'windows-latest'
run: |
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-windows
cd build
cmake --build . --config ${{matrix.build_type}}
- name: Run Application (Unix)
working-directory: ./tests/vcpkg/build
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
./realm_helloworld
- name: Run Application (Windows)
working-directory: ./tests/vcpkg/build
if: matrix.os == 'windows-latest'
run: |
cd ${{matrix.build_type}}
start realm_helloworld.exe
- name: Open a tmate debug session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
timeout-minutes: 15