Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
9f31491b
Unverified
Commit
9f31491b
authored
Sep 17, 2023
by
Daniel Stonier
Committed by
GitHub
Sep 17, 2023
Browse files
bzlmodded (#1224)
parent
016b2e77
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
0 deletions
+34
-0
.bazelignore
.bazelignore
+1
-0
.github/workflows/build.yml
.github/workflows/build.yml
+19
-0
MODULE.bazel
MODULE.bazel
+14
-0
No files found.
.bazelignore
0 → 100644
View file @
9f31491b
test/gtest-1.11.0
.github/workflows/build.yml
View file @
9f31491b
...
...
@@ -64,3 +64,22 @@ jobs:
cd "${{ github.workspace }}"
bazel test test
bzlmod-build
:
strategy
:
matrix
:
os
:
[
ubuntu-latest
,
windows-latest
,
macos-latest
]
runs-on
:
${{ matrix.os }}
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Build
shell
:
bash
run
:
|
cd "${{ github.workspace }}"
bazel build --enable_bzlmod :all
-
name
:
Test
shell
:
bash
run
:
|
cd "${{ github.workspace }}"
bazel test --enable_bzlmod test
MODULE.bazel
0 → 100644
View file @
9f31491b
"""
yaml-cpp is a YAML parser and emitter in c++ matching the YAML specification.
"""
module(
name = "yaml-cpp",
compatibility_level = 1,
version = "0.8.0",
)
bazel_dep(name = "platforms", version = "0.0.7")
bazel_dep(name = "rules_cc", version = "0.0.8")
bazel_dep(name = "googletest", version = "1.14.0", dev_dependency = True)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment