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
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
65
54
fail-fast: false
66
-
67
-
# Set up a matrix to run the following configurations:
68
-
# 1. <Linux, Release, latest Clang compiler toolchain on the default runner image, default generator>
69
-
#
70
-
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
71
55
matrix:
72
56
os: [ubuntu-latest, macos-latest]
73
57
build_type: [Release]
74
58
c_compiler: [clang]
75
-
# All [OS x compiler] items should be covered in include/exclude sections.
76
59
include:
77
60
- os: ubuntu-latest
78
61
c_compiler: clang
79
62
cpp_compiler: clang++
80
-
81
63
- os: macos-latest
82
64
c_compiler: clang
83
65
cpp_compiler: clang++
@@ -106,51 +88,49 @@ jobs:
106
88
if: steps.lfscache.outputs.cache-hit != 'true'
107
89
run: git lfs checkout
108
90
109
-
- name: Check LFS restore the files or not after checkout
91
+
- name: Check LFS restored files
110
92
run: ls -l inflection/resources/org/unicode/inflection/dictionary/*
111
93
112
94
- name: Set reusable strings
113
-
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
# 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).
0 commit comments