You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/CI.yml
+25-9
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ name: CMake on multiple platforms
4
4
5
5
on:
6
6
push:
7
-
branches: [ main ]
7
+
branches: [ develop ]
8
8
pull_request:
9
-
branches: [ main ]
9
+
branches: [ develop ]
10
10
11
11
jobs:
12
12
build:
@@ -54,6 +54,10 @@ jobs:
54
54
55
55
steps:
56
56
- uses: actions/checkout@v4
57
+
58
+
- name: Install lfontconfig
59
+
if: matrix.os == 'ubuntu-latest'
60
+
run: sudo apt-get install -y libfontconfig1-dev
57
61
58
62
- name: Set reusable strings
59
63
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
@@ -73,12 +77,24 @@ jobs:
73
77
-DSOLTRACE_BUILD_GUI=OFF
74
78
-S ${{ github.workspace }}
75
79
76
-
- name: Build
80
+
- name: Build-Windows
77
81
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
# # Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
83
-
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
97
+
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
98
+
run: |
99
+
cd ${{ steps.strings.outputs.build-output-dir }}/google-tests
0 commit comments